3
はリスト上のすべての受信者を取得アピnodejs sendgrid応じて取得していない: -
ここ`var request = sg.emptyRequest()
request.queryParams["page"] = '1'
request.queryParams["page_size"] = '1'
request.queryParams["list_id"] = '1'
request.method = 'GET'
request.path = '/v3/contactdb/lists/{list_id}/recipients'
sg.API(request, function (error, response) {
console.log(response.statusCode)
console.log(response.body)
console.log(response.headers)
});`
は私のAPIレスポンスである: -総アイテムは
`{
"statusCode": 200,
"body": {
"recipients": [
{
"created_at": 1486990474,
"email": "[email protected]",
"first_name": null,
"id": "am9uZXMyQGV4YW1wbGUuY29t",
"last_clicked": null,
"last_emailed": null,
"last_name": "tyutyut",
"last_opened": null,
"updated_at": 1486990474
}
]
},
"headers": {
"server": "nginx",
"date": "Mon, 20 Feb 2017 07:11:31 GMT",
"content-type": "application/json",
"content-length": "1052",
"connection": "close",
"access-control-allow-methods": "HEAD, GET, PUT, POST, DELETE,OPTIONS,PATCH",
"access-control-max-age": "21600",
"access-control-expose-headers": "Link",
"access-control-allow-origin": "*",
"x-content-type-options": "nosniff",
"strict-transport-security": "max-age=31536000",
"x-ratelimit-remaining": "0",
"x-ratelimit-limit": "1",
"x-ratelimit-reset": "1487574692",
"powered-by": "Mako"
}
}`
私はリストによるreciepentsリストを呼び出していますid。 ページ設定がこのApiで動作していますが、私は応答で総アイテムのパラメータを取得していません。
私はAPIを見てきましたが、合計アイテムのようなものは見つかりませんでした。そのAPI呼び出しからどのような応答が得られましたか? – Sravan
私の質問の回答を参照 –
あなたは合計アイテムを取得していないので、あなた自身で手動で数えることができます。 'response.body.recipients.length'は合計アイテムを返します – Sravan