我有这个具有以下结构的应用程序
我正在使用rest 客户端库 https://github.com/philsturgeon/codeigniter-restclient 连接到MyAPI并使用php api 客户端 http://code.google.com/p/google-api-php-client/进行连接到谷歌 API
我的控制器代码如下
function index()
{
if($this->form_validation->run())
{
$logged = $this->rest->get('auth/user',array(
'email'=>$this->input->post('email')
));
var_dump($logged);
}
$this->load->view('layout/login',$this->data);
}
我处理此请求的 API 代码如下,它确保用户存在于我的数据库中并通过 Google 进行身份验证
function user_get()
{
$response=NULL;
$data=array(
'email'=>$this->get('email')
);
$google_account=$this->google->authenticate();
if( isset($google_account) && $this->user_model->login($data))
{
$response->status='success';
$response->message=$google_account;
}
else
{
$response->status='error';
$response->message='Failed to authenticate user';
}
$this->response($response,200);
}
库Google
函数“Authenticate”如下
function authenticate()
{
$oauth2 = new Google_Oauth2Service($this->client);
if (isset($_GET['code']))
{
$this->client->authenticate($_GET['code']);
$_SESSION['token'] = $this->client->getAccessToken();
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
return;
}
if (isset($_SESSION['token']))
{
$this->client->setAccessToken($_SESSION['token']);
}
if (isset($_REQUEST['logout']))
{
unset($_SESSION['token']);
$this->client->revokeToken();
}
if ($this->client->getAccessToken())
{
$user = $oauth2->userinfo->get();
// The access token may have been updated lazily.
$_SESSION['token'] = $this->client->getAccessToken();
return $user;
}
else
{
$authUrl = $this->client->createAuthUrl();
redirect($authUrl);
}
}
问题是
当我通过直接 url 连接这个浏览器时,
http://localhost/hac_dc/api/auth/user/ahmed.samy.cs@gmail.com
我得到了完美的 JSON 响应
但是当我使用休息客户端连接它时
我得到响应false
我尝试改变我使用我的休息客户端的方式我尝试添加第三个参数JSON
作为 MIMEapplication/json
但没有成功
我不知道通过我的 REST API 连接另一个 REST API 是否有问题或不好的做法,
拉了我几个小时的头发,请帮帮我