如何从pinterest获得授权代码

时间:2017-06-02 09:59:03

标签: oauth pinterest

我正试图从pinterest获取授权码。

我经历了offical doc,他们声明要求这个参数为:

{
  "status": "failure",
  "message": "Invalid parameters.",
  "code": 1,
  "data": "Missing required field 'scope'"
}

我改变了

其余参数保持不变,我点击邮递员的请求。

我得到的回应是:

render(){
    return (
        <LabelDelete handleDelete={this.props.deletePost} id={id}  
            {...this.props.children}/>
    )
}

有人可以告诉我如何获取authorization_code。

先谢谢

1 个答案:

答案 0 :(得分:1)

 https://api.pinterest.com/oauth/?
 state=9750187663&scope=read_public&client_id={your app 
 id}&redirect_uri=https://www.google.com&response_type=code

尝试此参数顺序(状态为第一,范围,...等)!!非常奇怪,真的!只是剪切范围并将其粘贴到最后,您将回复说另一个字段丢失,并且一次又一次地执行相同的参数顺序更改,直到您获得网站HTML。