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 REST Api with retrofit

I am trying to use Paypal REST api with retrofit, but i am getting the following error {"name":"INVALID_REQUEST","message":"Request is not well-formed, syntactically incorrect, or violates schema.","debug_id":"2689a7ff7bf28","details":[{"field":"/purchase_units","value":"","location":"body","issue":"MISSING_REQUIRED_PARAMETER","description":"A required field / parameter is missing."},{"field":"/intent","value":"","location":"body","issue":"MISSING_REQUIRED_PARAMETER","description":"A required field / parameter is missing."}],"links":[{"href":"https://developer.paypal.com/docs/api/orders/v2/#error-MISSING_REQUIRED_PARAMETER","rel":"information_link","encType":"application/json"}] here is…

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
Back To Top
Search