我正在构建一个从youtube接收videoID的php应用程序。 但如果我使用youtube帐户验证应用程序,它会正确显示上传视频。如果我删除会话或尝试其他浏览器,则需要再次验证该应用程序。
这是我的来源:
http://pastebin.com/7GezyHZs
我的client_secrets.son看起来像:
//PowerShell's string formatting (–f) operator:
PS >$date = [DateTime] "05/09/1998 1:23 PM"
PS >"{0:dd-MM-yyyy @ hh:mm:ss}" -f $date
09-05-1998 @ 01:23:00
//CMDLET
PS >Get-Date -Date "05/09/1998 1:23 PM" -Format "dd-MM-yyyy @ hh:mm:ss"
09-05-1998 @ 01:23:00
(取消凭据)
我的oauth2callback.php看起来像:
{
"web": {
"client_id": "clientID.apps.googleusercontent.com",
"client_secret": "CLientsecret",
"redirect_uris": ["https://localhost/oauth2callback.php"],
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token"
}
}
是否有可能永远与谷歌进行身份验证?
提前谢谢。