我正在将Laravel Passport设置为像api一样工作,但即使我通过oauth / token获取令牌数据,我似乎也无法使用curl。
我正在使用curl进行连接,因为大多数将要连接的应用程序已经完成,其中许多都使用基本的php。
以下代码从我的laravel应用程序中获取了token_type和access_token。
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://127.0.0.1:8000/oauth/token");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array ("X-Requested-With: XMLHttpRequest"));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$postData = array(
'client_id' => '6',
'client_secret' => 'Cprp9HPTYO7CsZRvv4A8MizNj9h1nLjyF6J1sElZ',
'grant_type' => 'client_credentials',
'scope' => '*'
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
$ans = json_decode(curl_exec($ch));
但是当我尝试使用令牌数据连接到某个页面时,我总是收到消息{"message":"Unauthenticated."}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://127.0.0.1:8000/api/test");
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X-Requested-With: XMLHttpRequest',
'Accept: application/json',
'Authorization: {$ans->token_type} {$ans->access_token}',
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
print_r( curl_exec($ch));
我的路线/ api.php很基本
Route::get('/test', function() {
return "Yes! We're testing!!";
})->middleware('client');
如果我删除中间件部分,我可以连接。那么,我在认证方面做错了什么?
答案 0 :(得分:2)
您在单个引号的字符串中使用变量,因此永远不会解析实际变量。如果要插值,则应使用双引号。
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X-Requested-With: XMLHttpRequest',
'Accept: application/json',
"Authorization: {$ans->token_type} {$ans->access_token}",
));