我正在尝试按照此链接将我的应用程序与沃尔玛集成,但它在登录表单上显示此错误消息“缺少一个或多个参数”。
public function authorize(Request $request)
{
$params = [
'responseType' => 'code',
'clientId' => $this->apiKey,
'redirectUri' => config('walmart.redirect_url'),
'clientType' => $request->get('clientType'),
'nonce' => Str::random(10),
'state' => Str::random(10)
];
return response(['loginUrl' => 'https://login.account.wal-mart.com/authorize?'.http_build_query($params)], 200);
}
使用此函数,我将用户重定向到身份验证页面,知道缺少哪些参数吗?
您有最新消息吗?我遇到了同样的问题,非常感谢您的帮助。谢谢。