In the real Device(LG Optimus Me) can't get the registration ID from C2DM Server? - android-c2dm

I am unable to get the registration ID from C2DM Server.
I got the reply as Authentication Failed Error.
In the sender ID I only pass my gmail account id.
Note: In the Mobile phone i was logged in via gmail account id.
Can anyone help me to resolve it?

Verify whether your Market was in Sync on device with same gmail ID.

Related

OAuth Developer Verification Form phone number

Under contact info there's the required field for phone number, but some country calling codes are missing.
How can I verify my product if I'm from Estonia?
I was sent this link to verify a project last year and only now got around to it
https://support.google.com/code/contact/oauth_app_verification
I want to verify a Moodle website so uploading files from Google Drive to Moodle wouldn't give unverified app message

React native login instagram only login with account register client id

I'm use react-native-instagram-login to create sample login Instagram.
I'm using account Abc#gmail.com to create client id and when login with Abc#gmail.com it's ok but when I login with another account it show error: {"error_type": "OAuthForbiddenException", "code":400,"error_message": "Your are not a sandbox user of this client"}.
It's mean when my application not public in google play or app store I only can login with my account register client id? If it is error how I can't fix it?
This is not an error, you need to get your app reviewed by Instagram.

Mobilefirst 8.0 Push notification get Device ID

I am using Mobilefirst 8.0 push notification part in cordova application downloaded sample application which is given by IBM. Its working fine.
When I click on register device button device id I can see in mobilefirst console.
1) How I can get that same device ID in client side application?
2) User ID field also I can see in mobilefirst console device register information. How Can I add particular User ID while registering device?
1) How I can get that same device ID in client side application?
You can call the following REST endpoint in order to retrieve from the server various data about the application, including the deviceId: http://www.ibm.com/support/knowledgecenter/en/SSHS8R_8.0.0/com.ibm.worklight.apiref.doc/rest_runtime/r_restapi_push_device_registrations_get.html
2) User ID field also I can see in mobilefirst console device register information. How Can I add particular User ID while registering device?
The sample uses the MobileFirst security framework, and that's where the userId is coming from. Please refer to the security documentation, tutorials and samples:
https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/authentication-and-security/
https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/authentication-and-security/user-authentication/android/
The same userId is also used by the Push service by default (Push retrieves the user id from the request being made and if the user is already logged in, the userid part of the request). If there is no challenge handler in place the default user id would be anonymous.

Gcm with appodeal

I am using gcm with appodeal in my app and when I am sending the push notification the for the first push was successful but phone is not receiving the notification and after that error is there while sending push that device is not register. What to do in this situation please help me.
Is it iOS or Android ? I had the exact same issue just yesterday with iOS and all I had to was to create a development provisioning profile and set it up properly in xCode. I hope that helps you.
I think for you to verify that your app can send and receive messages, client apps must register with GCM.
To register with GCM:
1.The client app obtains a registration token using the Instance ID API. The call to this API must have the authorized entity set to your app server's sender ID, and the scope set to the appropriate value for GCM (depending on your platform). Refer to the API reference for full detail on this API.
2.The client app passes the registration token to the app server.
3. The app server saves the registration token and acknowledges to the client app that the process completed successfully.
This thread may also provide further insight as to why you are receiving the device not registered error.

Custom Notification from Auth0 to iOS

I have an iOS 7 iPad app that uses Auth0 to authenticate users. Auth0 sends a verification message to each new user's email address to verify the email address. I would like my app to be informed when the email address has been verified. I have not found a way to do this without repeatedly querying Auth0 for the user's profile until the profile indicates the email address is verified.
Has anyone found a more efficient way to do this? I am very new to process communication over the internet, but I see that I may be able to use an Auth0 Rule to send a URL get request. I also see that I have added URL schemes to my app to enable it to respond to URLs. But I don't know if these two features can be used to provide a notification from Auth0 to a device that the event I want has occurred.
Has anyone a solution to this?