在 youtube-ios-player-helper 中设置 "origin" 会破坏编程功能
Setting "origin" in youtube-ios-player-helper breaks programatic functionality
使用 YouTube iOS Player Helper 库(https://github.com/youtube/youtube-ios-player-helper 下载于 2015-06-16),如果我添加以下行:
@"origin": @"example.com",
之前:
@"modestbranding": @1
在 SingleVideoViewController.m
的第 30 行,程序控制不再影响视频,进度条也不再更新。此外,很少有状态消息是 shows/received.
我 assume/hope "origin" 会出现在分析中,以表示来源,这就是我设置它的原因。
此文本是否需要采用特定格式,或者我应该设置的其他格式?
我在这里交叉发布这个问题,因为我没有收到对 GitHub 问题的回复
https://github.com/youtube/youtube-ios-player-helper/issues/121
您没有为 origin
参数传递有效的 url。
试试 @"origin": @"https://example.com"
或 @"origin": @"http://example.com"
。注意 http(s)://
.
使用 YouTube iOS Player Helper 库(https://github.com/youtube/youtube-ios-player-helper 下载于 2015-06-16),如果我添加以下行:
@"origin": @"example.com",
之前:
@"modestbranding": @1
在 SingleVideoViewController.m
的第 30 行,程序控制不再影响视频,进度条也不再更新。此外,很少有状态消息是 shows/received.
我 assume/hope "origin" 会出现在分析中,以表示来源,这就是我设置它的原因。
此文本是否需要采用特定格式,或者我应该设置的其他格式?
我在这里交叉发布这个问题,因为我没有收到对 GitHub 问题的回复 https://github.com/youtube/youtube-ios-player-helper/issues/121
您没有为 origin
参数传递有效的 url。
试试 @"origin": @"https://example.com"
或 @"origin": @"http://example.com"
。注意 http(s)://
.