我是yii framework的新手
我使用curl post尝试了网络服务响应,但我收到了响应错误代码
$curl = new curl\Curl();
$response = $curl->setOption(
CURLOPT_POSTFIELDS,
http_build_query(array(
'email' => 'sfdsdfsdf',
'access_token' => 'fdsdsfsdfsdf',
'auth_type' => 'fdsfsfsdfsd'
)
))
->post('http://example.com/login/');
var_dump($curl->responseCode); - 404
我尝试了上面的代码。 请提出任何解决此问题的建议
抱歉我的英文
答案 0 :(得分:1)
该URL http://example.com/login/
不存在,并且正确响应HTTP 404错误:找不到页面。 (另见:List of HTTP Status Codes)
您的代码似乎正在运行。您可能希望将example.com网址更改为您的实际端点。