skip to Main Content

Json – XSuperObject: what's wrong with this date field?

unit fmainForm; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; type TForm1 = class(TForm) Memo1: TMemo; procedure FormCreate(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm}…

VIEW QUESTION

Ebay API – IdHTTP how to send x-www-form-urlencoded body

I have tested POST function in PostMan to do POST function with body parameters as below: Here is eBay's document for this function: HTTP method: POST URL (Sandbox): https://api.sandbox.ebay.com/identity/v1/oauth2/token HTTP headers: Content-Type = application/x-www-form-urlencoded Authorization = Basic <B64-encoded-oauth-credentials> Request body:…

VIEW QUESTION
Back To Top
Search