快速下载原始数据
Raw Data Download in Flurry
我正在尝试使用 Flurry 中的原始数据下载。(link)
因此,我正在使用 Postman 向 Flurry 的原始数据 api 发送 POST 请求。
curl -X POST \
https://rawdata.flurry.com/pulse/v1/rawData \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: **programmtics user token** \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/vnd.api+json' \
-H 'Postman-Token: 9df055be-304a-4403-b300-603ec4c21e30' \
-H 'cache-control: no-cache' \
-d '{
"data":
{
"type": "rawData",
"attributes": {
"startTime": "1537833600000",
"endTime": "1540425600000",
"outputFormat": "JSON",
"apiKey": "app token"
}
}
}
'
我收到这个错误:
{"code":401,"message":"Unauthorized"}
我做错了什么,是什么?
我的编程用户已启用原始数据下载。
尝试交换
-H 'Authorization: **programmtics user token**
为了
-H 'Authorization: Bearer **programmtics user token**
我正在尝试使用 Flurry 中的原始数据下载。(link)
因此,我正在使用 Postman 向 Flurry 的原始数据 api 发送 POST 请求。
curl -X POST \
https://rawdata.flurry.com/pulse/v1/rawData \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: **programmtics user token** \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/vnd.api+json' \
-H 'Postman-Token: 9df055be-304a-4403-b300-603ec4c21e30' \
-H 'cache-control: no-cache' \
-d '{
"data":
{
"type": "rawData",
"attributes": {
"startTime": "1537833600000",
"endTime": "1540425600000",
"outputFormat": "JSON",
"apiKey": "app token"
}
}
}
'
我收到这个错误:
{"code":401,"message":"Unauthorized"}
我做错了什么,是什么?
我的编程用户已启用原始数据下载。
尝试交换
-H 'Authorization: **programmtics user token**
为了
-H 'Authorization: Bearer **programmtics user token**