Getting (#100) Error with currency URL - facebook-graph-api

We are setting up payments for a Facebook app. All is working fine, except running into a problem when associating the currency file graph object with the app. Getting the above error, double checked that the object is valid via the object explorer, and the app token is valid as well.

Related

"Missing Authentication Token" trying to perform a Post to AWS api

There have been loads of topics on this error and I've spent hours reading through them. I am getting this error when trying to load the URL of my Post method (it works fine when I test it within the AWS console). When I run the URL created after I deployed it:
https://somehexvalues.execute-api.us-east-1.amazonaws.com/prod/temperature
I get this errror: message "Missing Authentication Token"
I can see the response contained this error: missingAuthenticationTokenException
I've done the exact same thing with a Get and had no problems. Is this something specific to Post?
I deployed the app after every change and took the URL from the method's STAGES tab.
Validation and authentication are set to "None"
Is there anything else I can do to debug this?

Production app: Invalid or unknown client (ID copied from credentials page)

I went through the sandbox testing and graduation procedure. My application got approved (for internal use), but I've been unable to use the new client ID.
The OAuth callback URL contains the error message:
GET /oauth2callback?error=invalid_request&error_description=OAU-230%3AInvalid%20or%20unknown%20client%3A%20xxxxxxxclientIdxxxxx
I copied my client ID several times from the application credentials page, it is correct and complete. The ID is repeated correctly inside the error message as well, so I know it's received on the production server. The production server URL is correct too.
What's going on here?
Apparently, all I had to do is wait. After graduating my application and getting the Approved message, RingCentral took a while longer for the new credentials to start working. I don't know how long it took, as I've waited 28 days to try again.

Issue in redirecting back to our Site from sandbox test authorize net

After processing the payment, control is not directing back to our site(x_relay_url) from https://test.authorize.net/gateway/transact.dll.
The URL mentioned in the x_relay_url cannot be accessed directly it requires session id and other details to access it which was passed to Authorize net page using merchantDefinedData variables.
I checked the following article also but our URL seems to be fine and we checked our code there is nothing wrong in that.
I tried multiple URLs in "x_relay_url" but nothing seems to be working.
Any help is appreciated.
Error Message:
An error occurred while trying to report this transaction to the
merchant. An e-mail has been sent to the merchant informing them of
the error. The following is the result of the attempt to charge your
credit card.
This transaction has been approved.
It is advisable for you to contact the merchant to verify that you will receive the product or service.

Facebook graph API returns error 404

I'm seeing a strange error calling FB graph API with a valid token. This is in the context of a Cordova angular JS application.
I use $cordovaOAuth.facebook to login and that succeeds and I get back the access token.
Then the code fetches some public profile details: image, name, location and gender like so:
$http.get('https://graph.facebook.com/v2.2/me', {params: {access_token: [token obtained from $cordovaOAuth.facebook() call],fields: "name,gender,location,picture", format: "json" }}....);
This returns error 404
In chrome://inspect the URL appears as https://graph.facebook.com/v2.2/me?access_token=[token]&fields=name,gender,picture&format=json
When this URL is used in a browser it returns valid JSON response with all requested fields.
Any ideas why this does not work in the cordova app?
NOTE. This used to work before. No changes on the app or Facebook back end.
Thank you
Andy

Issue when delete a logged in user in symfony3

I have logged in as user and tried to delete the same account. But getting the below error instead of redirecting to login page the error pop up. This issue happens in symfony 3. I have used serialized and deserialized method in the user entiry
Error:
You cannot refresh a user from the EntityUserProvider that does not contain an identifier. The user object has to be serialized with its own identifier mapped by Doctrine.
Please suggest