In prestashop while implementing paypal integration i am getting following error - prestashop

I am new to prestashop. while implementing paypal integration module i am getting following error as
Please try to contact the merchant:
PayPal response:
TIMESTAMP -> 2013-08-13T10:15:35Z
L_ERRORCODE0 -> 10002
L_SHORTMESSAGE0 -> Security error
L_LONGMESSAGE0 -> Security header is not valid
L_SEVERITYCODE0 -> Error
Please anyone help on this issue.
Thanks in advance

this error always occurs when you enter bad credentials.
Just check your credentials and everything should work fine.

Related

DevOps API - update user's entitlements using Power Automate

I would like to automate the process of updating users' entitlements in DevOps. Shortly saying, when someone requests the access to a specific project I want:
Flow to trigger approval -> when it is approved -> flow add the selected entitlement to the user
I have a problem with the last part where I am using the DevOps HTTP request connector:
where:
URI:
"https://dev.azure.com/"MyOrgName"/_apis/userentitlements/5b0da6ff-c071-43aa-9178-7af9d6173dc4?api-version=5.0-preview.2"
Headers:
Content-Type application/json-patch+json
Body:
[
{
"op":0,
"path":"/projectEntitlements",
"value":{"projectRef":{"id":"3477b8aa-ff18-4f55-a632-3bbba54dbdff"},
"group":{"groupType":2}}
}
]
I am receiving an error code 400 - not authorized.
I know from my experience, that such an error doesn't need to mean missing authorization settings but just an incorrect URI or body in an HTTP request.
Any idea what can be wrong with my request or what can be the workaround for this?
Thank you in advance for your help.
Jacek

Stuck on getting access token for Credit Card (paypal)

I am working on an application which uses Paypal REST API for payments.
I have a client ID & secret but when I try to fetch the access token I get the following error message-
Invalid HTTP response The underlying connection was closed: An unexpected error occurred on a send
What could be the problem? please suggest.
Thanks in advance
Fixed this. The version of Newtonsoft.JSON was not compatible with paypal rest API & the webconfig on server was not updated with the package includes.

PayPal Adaptive payments' sandbox page not found

I have been using my API class for months without any problems however suddenly the sandbox page stopped working.
The payment link which I am trying to access is: https://www.sandbox.paypal.com/webapps/adaptivepayment/flow/pay?paykey=AP-XXXXXXXXXXXXXXX , however I am getting 404 error on the page.
HTTP Status 404 -
type Status report
message
description The requested resource () is not available.
Have they made any modifications to the link structure after the recent update? I have done my research but couldn't find anything, any guidance is more than welcome.
Has the error persisted? Visiting the -XXXX link, I get "This transaction is invalid. Please return to the recipient's website and try again."

FB.ui() with method: "feed" is broken

It seems that method: 'feed' within FB.ui() using FB JavaScript SDK is broken. Consider the following example:
Having an app running as Page Tab on a FB page AND Canvas-App
All needed fields in the app section are filled out correctly
Using FB.ui() with method: 'feed' to let a user tell someone about it
The link-Property of method: 'feed' is set the Canvas-URL and for testing to the Page Tab URL of the app
Everything worked for us until a few days ago (don't remember the exact day)
Debugged over and over and couldn't find a bug
We always get the following error, now even with apps that formerly worked:
"An error occurred with xxx. Please try again later.
API Error Code: 191
API Error Description: The specified URL is not owned by the application
Error Message: redirect_uri is not owned by the application."
At least you got an error message.
I've the same but the following :
"An error occurred with xxx. Please try again later."
No error code or something.
Did you changed something on your app config ?
Your error code might means :
bad redirect_uri (mb you hav'nt the same appId or something)
You just changed your app domain name and your redirect uri isn't in the same domain
Try to access your app with your redirect_uri, if an error shows up you need to fix your redirect.
Good luck !

Getting Invalid Authsub Token Error 403

I am trying to authenticate my application using Blogger API but when user grant access to the application and blogger api return the token and the token i use to exchange the by sending the request on https://www.google.com/accounts/AuthSubSessionToken it return an error called Error 403 Invalid AuthSub Token. Kindly help me in this regard to debug the problem and solve it. Thanks in Advance
after doing some experiment, here it is some advice :
change secure to zero
https://www.google.com/accounts/AuthSubRequest?scope=https://gdata.youtube.com&session=1&secure=0&next=http://www.example.com
make sure you are requesting from http for and request in http again in future
https://www.google.com/accounts/AuthSubRequest?scope=http://gdata.youtube.com&session=1&secure=0&next=http://www.example.com
it's worked like a charm for me...