Unexpected json result while calling the surveymonkey api

青春壹個敷衍的年華 提交于 2019-11-27 08:44:50

问题


When calling the surveymonkey api I'm using {\"survey_id\":\"47625442\"," +"\"fields[]\":\"['url']\"}" as the json data the server needs to complete my request. while it is returning the data it is required it is not returning the additional URL i believe i am requesting. Does anyone know why this wouldn't give me this back?

EDIT https://developer.surveymonkey.com/mashery/get_collector_list this is the call im trying to make if this helps


回答1:


As was pointed out in the comments: Your JSON formatting is off, so the API doesn't understand that you're asking for the URL.

For an understanding of what's going on, take a look at the example request in the link you provided; note the format of the fields section.

Try again, this time with:

{"survey_id": "47625442", "fields": ["url"]}

...which with the escapes will look like this....

    {\"survey_id\": \"47625442\", \"fields\":[ \"url\" ]}"


来源:https://stackoverflow.com/questions/20846596/unexpected-json-result-while-calling-the-surveymonkey-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!