2017-07-09 11 views
0
var request = require("request"); 

var options = { method: 'GET', 
    url: 'https://connect.squareup.com/v2/locations/{location_id}/transactions', 
    headers: 
    { 'postman-token': 'token', 
    'cache-control': 'no-cache', 
    authorization: 'Bearer square_token' } }; 

request(options, function (error, response, body) { 
    if (error) throw new Error(error); 

    console.log(body); 
}); 

以下の結果が得られます。正方形のプラットフォームサーバーから注文リストを取得できません

"transactions": [<br> 
     { 
      "id": "wDWQ6dH7q4IneSDTpEx3zI2eV",<br> 
      "location_id": "3XT6YVHAYDPFS",<br> 
      "created_at": "2017-07-06T13:40:15Z<br>", 
      "tenders": [<br> 
       {<br> 
        "id": "IZPusLhhGnacnOHFysNpKQB",<br> 
        "location_id": "3XT6YVHAYDPFS",<br> 
        "transaction_id": "wDWQ6dH7q4IneSDTpEx3zI2eV",<br> 
        "created_at": "2017-07-06T13:40:13Z",<br> 
        "amount_money": {<br> 
         "amount": 730,<br> 
         "currency": "USD"<br> 
        },<br> 
        "processing_fee_money": {<br> 
         "amount": 0,<br> 
         "currency": "USD"<br> 
        },<br> 
        "type": "CASH",<br> 
        "cash_details": {<br> 
         "buyer_tendered_money": {<br> 
          "amount": 730,<br> 
          "currency": "USD"<br> 
         },<br> 
         "change_back_money": {<br> 
          "amount": 0,<br> 
          "currency": "USD"<br> 
         }<br> 
        }<br> 
       }<br> 
      ],<br> 
      "product": "REGISTER",<br> 
      "client_id": "60FA84DB-865C-4DC2-B824-56A4F87B7264"<br> 
     },<br> 

私はお金だけを金額、注文食品&コーヒーアイテムや修飾子を取得することはできません。

答えて

関連する問題