gpt4 book ai didi

angular - 缺少必需的参数 : grant_type while accessing google token in ionic2

转载 作者:太空狗 更新时间:2023-10-29 17:55:03 25 4
gpt4 key购买 nike

缺少必需的参数:在 ionic2 中访问谷歌 token 时的 grant_type

错误:-

{
"error" : "invalid_request",
"error_description" : "Required parameter is missing: grant_type"
}

代码

    let creds=JSON.stringify({
'client_id':'251059024984-8113pdtb11gm8m4evdq59stlpvcab8cn.apps.googleusercontent.com',
'client_secret':'uVWZt_Vd5mMLXGQDo7lmAIUe',
'redirect_uri':'http://localhost/callback',
'grant_type':'authorization_code',
'code':data
});
var headers = new Headers();
headers.append('Content-Type', 'application/x-www-form-urlencoded');
console.log(data)


this.http.post('https://accounts.google.com/o/oauth2/token',creds,{headers: headers}).map(res => res.json()).subscribe(data => {
console.log(data)
},(error)=>{
console.log('error in', error);
})

当我检查 Postman 中的 api 时,它工作完美

enter image description here

最佳答案

let creds = 'client_id=251059024984-8113pdtb11gm8m4evdq59stlpvcab8cn.apps.googleusercontent.com'
+'&client_secret=uVWZt_Vd5mMLXGQDo7lmAIUe'
+'&redirect_uri=http://localhost/callback'
+'&grant_type=authorization_code'
+'&code=' + data

JSON.stringify() 格式不正确

关于angular - 缺少必需的参数 : grant_type while accessing google token in ionic2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39831384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com