我有一個谷歌賬戶,可以通過www.youtube.com絕對正常登錄。然而,當我通過YouTube API使用下面的代碼:Youtube API - BadAuthentication,儘管登錄正確
$httpClient = Zend_Gdata_ClientLogin::getHttpClient(
$username = '[email protected]',
$password = 'EXAMPLE',
$service = 'youtube',
$client = null,
$source = 'EXAMPLE', // a short string identifying your application
$loginToken = null,
$loginCaptcha = null,
"https://www.google.com/accounts/ClientLogin");
我收到以下錯誤:'Authentication with Google failed. Reason: BadAuthentication'
我爲什麼要能夠登錄到谷歌& YouTube上使用完全相同的憑據,但不給API?
2步不打開了,但是我啓用了它併爲此服務生成了一個特定於應用程序的密碼,並且它工作得非常好。 – rickyduck