我正在尝试从API中获取代币的令牌
$client = new GuzzleHttp\Client();
$response = $client->get('https://api.codeship.com/v2/auth/', [
'auth' => [
'xxxxxx@xxxxx.com',
'xxxx'
],
]);
点击该URL时我得到404,但是我知道该URL返回了我需要的内容,因为我可以使用邮递员中的相同凭据来访问它。
有没有办法证明它正在发送正确的凭据?
谢谢