gpt4 book ai didi

php - AuthSub 目标路径前缀与提供的 "next"URL 不匹配

转载 作者:可可西里 更新时间:2023-11-01 13:00:36 25 4
gpt4 key购买 nike

我正在尝试在 PHP 中使用 Gcal API。

我正在使用 ZEND 框架

function getAuthSubUrl($company) 
{
$next = "http://$company.mysite.com";
$scope = 'http://www.google.com/calendar/feeds/';
$secure = false;
$session = true;
return (Zend_Gdata_AuthSub::getAuthSubTokenUri($next, $scope, $secure, $session));
}
$authSubUrl = getAuthSubUrl();
echo "<a href=\"$authSubUrl\">login to your Google account"</a>

我不确定我在这里做错了什么。我几乎完全按照谷歌的例子。

他们的示例中确实有 $next = getCurrentUrl(); 但我在尝试时遇到未定义的错误。

最佳答案

我想通了,我使用的是转发到基于子域的页面的子域。我猜谷歌试图确保你的 $next page 是真实的而我的只是转发。一旦我将 $next 作为主域,它就可以正常工作。然后,我向 url 添加了一些 GET vars 以将其转发回正确的位置。

//$next = "http://$company.mysite.com";
$next = "http://mysite.com?company=$company";

关于php - AuthSub 目标路径前缀与提供的 "next"URL 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2445376/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com