以下是一些使用YouTube API进行身份验证的代码。
Public Function GetService(ByVal username As String, ByVal password As String) As YouTubeService
Dim service As YouTubeService = New YouTubeService("test", "xxxxxxxx")
service.setUserCredentials(username, password)
Return service
End Function
现在,如果我输入了一些错误的凭据,如果用户成功进行身份验证,则YouTube不具有特异性。还有另一种方法吗?
答案 0 :(得分:0)
您需要在服务对象上使用QueryClientLoginToken()
方法。