使用YouTube iOS Player帮助程序库(https://github.com/youtube/youtube-ios-player-helper下载于2015-06-16),如果我添加行:
@"origin": @"example.com",
之前:
@"modestbranding": @1
在SingleVideoViewController.m
中的第30行,则程序控制不再起作用以影响视频,并且进度条不再更新。此外,很少有状态消息被显示/接收。
我假设/希望"起源"会出现在分析中,表示来源,这就是我设置它的原因
有没有这个文本需要使用的特定格式,或者我应该设置的其他格式?
我在这里交叉发布这个问题,因为我对GitHub问题没有回应https://github.com/youtube/youtube-ios-player-helper/issues/121
您没有为origin
参数传递有效的url。
尝试@"origin": @"https://example.com"
或@"origin": @"http://example.com"
。注意http(s)://
。