google-php-client示例在用户点击链接时调用授权URL。我想在没有任何用户点击的情况下加载页面时调用它。 它在google-client示例中的实现方式:
$client = new Google_Client();
$client->setApplicationName('Google Contacts PHP Sample');
$client->setScopes("http://www.google.com/m8/feeds/");
$auth = $client->createAuthUrl();
print "<a class=login href='$auth'>Connect Me!</a>";
我正在尝试删除点击Connect Me
链接的依赖关系并调用$client->createAuthUrl()
给出的网址。我是Codeigniter的新手,这就是为什么要在这个简单的任务上挣扎
我检查有以下不同的方法来调用URL,但不确定哪个方法可以在这里工作:
我正在使用php 5.3和XAMPP
答案 0 :(得分:2)
对于使用CodeIgniter库的简单重定向,请使用以下命令:
$client = new Google_Client();
$client->setApplicationName('Google Contacts PHP Sample');
$client->setScopes("http://www.google.com/m8/feeds/");
$auth = $client->createAuthUrl();
$this->load->helper('url');
redirect($auth); // Returns a HTTP redirect to the client
当没有传递第二个参数(或作为header('Location: ... ');
传递)时,这是'location'
的包装。
答案 1 :(得分:1)
只需使用url helper或替代方式的重定向:
echo '<script>window.location = "'.$your_location.'"</script>';
答案 2 :(得分:0)
使用php功能!
header('Location: $auth', TRUE, 301);
由于我们讨论的是Codeigniter,使用内置的重定向()
更合适 //loading the helper
$this->load->helper('url');
redirect($auth);
更多阅读Codeigniter URL Helper