0

我正在尝试执行以下操作。

当我尝试使用 oAuth 访问服务时,如果我收到错误,因为我使用了错误的密钥,我不想显示错误消息,而是将用户发送到身份验证页面。

但是使用 try catch fn 不起作用。

这是我的代码:

$url = 'https://api.soundcloud.com/me.json?'.http_build_query(array(
        'oauth_token' => $token,
    ));
    //
    try{
        $user = json_decode(file_get_contents($url));
        return array(
            'uid' => $user->id,
            'nickname' => $user->username,
            'name' => $user->full_name,
            'location' => $user->country.' ,'.$user->country,
            'description' => $user->description,
            'image' => $user->avatar_url,
            'urls' => array(
                'MySpace' => $user->myspace_name,
                'Website' => $user->website,
            ),
        );
    }
    catch(Services_Soundcloud_Invalid_Http_Response_Code_Exception $e)
    {
        log_message('error', 'EXCEPTION: '.$e);
        return FALSE;
    }

我希望它返回用户数组或 FALSE。

有任何想法吗?

4

1 回答 1

5

您可以查看此处以捕获 file_get_content 错误

如何处理 PHP 中 file_get_contents() 函数的警告?

这提供了不同的解决方案,例如查看响应标头

$content = @file_get_contents("http://www.google.com");
if (strpos($http_response_header[0], "200")) { 
   echo "SUCCESS";
} else { 
   echo "FAILED";
}
于 2012-09-10T03:32:29.887 回答