最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - POST headers and body using Jquery AJAX - Stack Overflow

programmeradmin1浏览0评论

I have to send a POST to a broker API including headers and a body:

Action  POST 

Header  
Content-Type: application/json; charset=UTF-8
Accept: application/json; charset=UTF-8
X-IG-API-KEY: 5FA056D2706634F2B7C6FC66FE17517B

Body    
{ 
"identifier": "A12345", 
"password": "112233" 
} 

The API is here:

The problem is that every example on the internet sends the data as "data" like this:

jQuery.ajax(

{

url : '',

type: 'POST',

dataType : "json",

data: {identifier: "A12345", password: "112233"}

});

I don't understand this, where is the header and the body? All examples look basically like this, I can't make heads or tail out of this.

I have to send a POST to a broker API including headers and a body:

Action  POST https://demo-api.ig./gateway/deal/session

Header  
Content-Type: application/json; charset=UTF-8
Accept: application/json; charset=UTF-8
X-IG-API-KEY: 5FA056D2706634F2B7C6FC66FE17517B

Body    
{ 
"identifier": "A12345", 
"password": "112233" 
} 

The API is here: https://labs.ig./rest-trading-api-guide

The problem is that every example on the internet sends the data as "data" like this:

jQuery.ajax(

{

url : 'https://demo-api.ig./gateway/deal/session',

type: 'POST',

dataType : "json",

data: {identifier: "A12345", password: "112233"}

});

I don't understand this, where is the header and the body? All examples look basically like this, I can't make heads or tail out of this.

Share Improve this question asked Sep 5, 2015 at 11:43 YoussYouss 4,23212 gold badges57 silver badges112 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

The data is for the post parameters in your case, headers have their own object.

jQuery.ajax(

{

url : 'https://demo-api.ig./gateway/deal/session',

type: 'POST',

dataType : "json",

headers: {"X-IG-API-KEY":"5FA056D2706634F2B7C6FC66FE17517B"},

data: {identifier: "A12345", password: "112233"}

});

Using beforeSend call back function and set headers. try below code -

jQuery.ajax({
  url : 'https://demo-api.ig./gateway/deal/session',
  type: 'POST',
  dataType : "json",
  data: {identifier: "A12345", password: "112233"}
  beforeSend: function(xhr){xhr.setRequestHeader('X-Header', 'header-value');},    
});
发布评论

评论列表(0)

  1. 暂无评论