沃尔玛集成 OAuth 2.0 - 缺少一个或多个参数

问题描述 投票:0回答:1

我正在尝试按照此链接将我的应用程序与沃尔玛集成,但它在登录表单上显示此错误消息“缺少一个或多个参数”。

  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);
  }

使用此函数,我将用户重定向到身份验证页面,知道缺少哪些参数吗?

laravel oauth-2.0 integration walmart-api
1个回答
0
投票

您有最新消息吗?我遇到了同样的问题,非常感谢您的帮助。谢谢。

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.