使用以下URL,我已经收到了来自Linkedin的配置文件响应,格式为XML。
this.http.get('https://api.linkedin.com/v1/people/~?oauth2_access_token='+token,{headers: headers})
如何获取JSON格式的响应?我已经尝试过使用URL,但是却出现了错误。
https://api.linkedin.com/v1/people/~?format=json~?oauth2_access_token=
答案 0 :(得分:1)
format
应该作为查询参数发送:
尝试:
https://api.linkedin.com/v1/people/~?format=json&oauth2_access_token=xxxx