【发布时间】:2011-10-01 03:27:17
【问题描述】:
我正在构建一个需要使用 Authsub 对用户进行身份验证的应用程序。我已经将 authsub 令牌存储为 $sessiontoken
我想将它与 Google Analytics PHP 接口 (GAPI) 一起使用,但它只支持硬编码的用户名和密码:
`define('ga_email','removed@gmail.com');
define('ga_password','removed');
define('ga_profile_id','removed');
需要'gapi.class.php';
$ga = new gapi(ga_email,ga_password);`
如何在此处使用我的 authsub 令牌?
【问题讨论】:
标签: php api google-analytics analytics authsub