gpt4 book ai didi

swift - 如何修复 YouTube API 查询的 401 错误?

转载 作者:行者123 更新时间:2023-11-28 13:37:29 24 4
gpt4 key购买 nike

[问题解决了,实际上我还不能选择我的答案作为解决方案。]

我正在使用 YouTube 数据 API 为移动应用开发视频上传功能;但我在执行查询时一直遇到 401 错误。

我使用 Firebase 为我提供来自 Google Developer 的 OAuth 和 API key 。


我试图查看 Firebase 提供的 PLIST 文件是否发生任何变化,甚至是其他文件。

我试图通过 GIDSignIn.sharedInstance().disconnect() 重置 iOS 模拟器,卸载应用程序并终止我的帐户对该应用程序的权限。

我尝试查看其他 StackOverFlow 问题,但它们都是关于其他语言,甚至是“原始”HTTP 请求。


在我的 AppDelegate 文件中,我有与 Firebase 和 Google 连接的那些行:

FirebaseApp.configure()
GIDSignIn.sharedInstance().clientID = FirebaseApp.app()?.options.clientID

和这个方法(还有一个非常相似的方法,我不会在这里展示):

func application( _ application: UIApplication, open url: URL, sourceApplication: String?, annotation: Any ) -> Bool {
return GIDSignIn.sharedInstance().handle( url,
sourceApplication: sourceApplication,
annotation: annotation )
}

在我的 Controller 关联类中,我有这些方法来创建查询:

private func uploadVideo( withVideoObject video: GTLRYouTube_Video, resumeUploadLocationURL locationURL: URL? ) throws {
let query = try uploadQuery( _video: video, resumeUploadLocationURL: locationURL )!

// [ progress related feedback ]

YouTubeUploadController.uploadFileTicket = self.service.executeQuery( query,
delegate: self.controller!,
didFinish: #selector( self.controller!.displayResultWithTicket(ticket:finishedWithObject:error:) ) )
}
private func uploadQuery( _video: GTLRYouTube_Video, resumeUploadLocationURL locationURL: URL? ) throws -> GTLRYouTubeQuery_VideosInsert? {
let fileToUploadURL = URL( fileURLWithPath: "\(self.controller!.uploadPathField)" )
if !( try! fileToUploadURL.checkPromisedItemIsReachable() ) {
throw YouTubeCustomError.init( _kind: .fileNotFound )
}
// Get a file handle for the upload data.
let uploadParameters = prepareUploadParameters( fileToUploadURL: fileToUploadURL, locationURL: locationURL )

return GTLRYouTubeQuery_VideosInsert.query( withObject: _video, part: "snippet,status", uploadParameters: uploadParameters )
}

它通过displayResultWithTicket(ticket:finishedWithObject:error:)发送错误:
此操作无法完成。(com.google.HTTPStatus 错误 401。)

没有给定的失败原因,也没有恢复建议。

提前致谢。


响应正文:
以下是 GTMSessionFetcher 的上传尝试的 HTTP 应答日志:

Response body: (178 bytes)
{
"error" : {
"message" : "Login Required",
"errors" : [
{
"message" : "Login Required",
"locationType" : "header",
"reason" : "required",
"domain" : "global",
"location" : "Authorization"
}
],
"code" : 401
}
}

请求 header

Request: POST https://www.googleapis.com/resumable/upload/youtube/v3/videos?part=snippet%2Cstatus&prettyPrint=false
Request headers:
Accept: application/json
Cache-Control: no-cache
Content-Type: application/json; charset=utf-8
User-Agent: org.cocoapods.GoogleAPIClientForREST/1.3.8 google-api-objc-client/3.0 iPhone/12.2 hw/sim (gzip) (GTMSUF/1)
X-Goog-Upload-Command: start
X-Goog-Upload-Content-Length: 2614231
X-Goog-Upload-Content-Type: video/mp4
X-Goog-Upload-Protocol: resumable

最佳答案

所以在我的例子中,我的 GIDSignInDelegate 登录方法中缺少 GTRLService 授权方影响:
service.authorizer = user.authentication.fetcherAuthorizer()

我假设它也可以用其他方法完成,但它是它初始化的核心点。


我是通过 ObjC 写访问器完成的,因为我没有找到 create/obtain a GTRLService instance in Swift 的方法我使用了一个 ObjC 单例类来获取它,我不确定如果它是在 ObjC 中初始化的,我们是否可以在 Swift 中访问 GTRLService 实例方法。

+ (void)setSharedInstanceAuthorizer:(id <GTMFetcherAuthorizationProtocol>)_authorizer {
if (sharedInstance == nil) {
sharedInstance = [GTLRYouTubeService new];
}
sharedInstance.authorizer = _authorizer;
};

如果这不能解决问题,那么@stvar 在问题评论中的回答实际上可能会解决问题。

关于swift - 如何修复 YouTube API 查询的 401 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56434103/

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