我不是php开发人员!我只是想在我的localhost上进行php curl工作,与我的REST服务交谈......
注意:我有一个自签名证书,我怀疑php curl转到[http:// localhost:8443 / myapp / oauth / token]而不是[https:// localhost: 8443 / MyApp的/的OAuth /令牌]
但我无法弄明白为什么?
以下是我的代码;
public function oauth2() {
echo 'Starting...<br/>';
$postargs = array(
'grant_type' => 'password',
'client_id' => 'some-client',
'client_secret' => 'some-secret',
'scope' => 'play,trust',
'username' => 'tester',
'password' => '121212'
);
$url = 'https://localhost:8443/myapp/oauth/token';
try {
$this->load->library('curl');
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, $url);
curl_setopt($curl_handle, CURLOPT_PORT, 8443);
curl_setopt($curl_handle, CURLOPT_POST, true);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl_handle, CURLOPT_HEADER, true);
curl_setopt($curl_handle, CURLOPT_HTTPHEADER, array('Accept: application/json'));
curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl_handle, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($curl_handle, CURLOPT_SSLVERSION, 3);
curl_setopt($curl_handle, CURLOPT_NOBODY, true);
//curl_setopt($curl_handle, CURLOPT_FOLLOWLOCATION, true);
//curl_setopt($curl_handle, CURLOPT_MAXREDIRS, 10);
//curl_setopt($curl_handle, CURLOPT_VERBOSE, true);
curl_setopt($curl_handle, CURLOPT_POSTFIELDS, $postargs);
$buffer = curl_exec($curl_handle);
if (curl_errno($curl_handle)) {
echo curl_error($curl_handle).'<br/>';
} else {
//echo curl_getinfo($curl_handle);
curl_close($curl_handle);
echo '<p>'.$buffer.'</p>';
}
} catch (Exception $e) {
echo 'Exception....<br/>';
echo $e->getMessage();
echo $e->getTraceAsString();
die;
}
echo 'Continue...<br/>';
die;
}
以上不起作用......为什么我在开始时会收到“HTTP / 1.1 100继续”?它应该不是那样的!这是我看到的回应。
HTTP/1.1 100 Continue HTTP/1.1 401
Unauthorized Server: Apache-Coyote/1.1
Cache-Control: no-store
Pragma: no-cache
WWW-Authenticate: Basic realm="***/client",
error="unauthorized",
error_description="An Authentication object was not found in the SecurityContext"
Content-Type: application/json;
charset=UTF-8 Transfer-Encoding: chunked Date: Fri,
10 Jan 2014 04:44:40 GMT
{"error":"unauthorized","error_description":"An Authentication object was not found in the SecurityContext"}
但是,当我从命令行运行curl时,就像下面那样有效!
curl -k -i -H "Accept: application/json" -X POST -d "grant_type=password&client_id=some-client&client_secret=some-secret&scope=play,trust&username=tester&password=121212" [https://localhost:8443/myapp/oauth/token]
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Cache-Control: no-store
Pragma: no-cache
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 10 Jan 2014 04:56:45 GMT
{"access_token":"cee03c37-9168-4dca-8ffe-bd7f469cdcb5","token_type":"bearer","expires_in":5238,"scope":"play trust","client_id":"...."}
答案 0 :(得分:0)
发现了问题!
改变以下线路工作!
curl_setopt($ curl_handle,CURLOPT_POSTFIELDS,“grant_type = password&amp; client_id = ....&amp; client_secret = ....&amp; scope = play,trust&amp; username = tester&amp; password = 121212”);
而不是数组需要一个字符串。