skip to Main Content

Paypal api – PayPal Order Request never gets back

Dears all, I'm starting with payPal, and I've tried to implement the standard sample provided with SDK (c#, FW 4.6.1) here below my server-side method public async static Task<PayPalHttp.HttpResponse> CreateOrder() { OrdersCreateRequest oRequest = new OrdersCreateRequest(); oRequest.Prefer("return=representation"); //System.Net.ServicePointManager.Expect100Continue = true;…

VIEW QUESTION

Paypal api – PayPal Orders v2: Request is not well-formed, syntactically incorrect, or violates schema

I am trying to use PayPal API. Here is the reference of Curl usage: https://developer.paypal.com/docs/api/orders/v2/ After searching in google, I found a link that shows a similar error: but, no hints given to fix it. https://www.paypal-community.com/t5/REST-APIs/Request-is-not-well-formed-syntactically-incorrect-or-violates/td-p/2090480 I have following code…

VIEW QUESTION

Paypal api – PayPal Smart-Buttons (Subscription) update_client_config_error

I am trying to implement the PayPal-Smart-Buttons to my website for a subscription. I copied the code from the PayPal docs (https://developer.paypal.com/docs/subscriptions/integrate/#subscriptions-with-smart-payment-buttons). So my code looks like this: <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> </head> <body> <script…

VIEW QUESTION
Back To Top
Search