android – 由于Youtube API问题,应用已从Google Play中删除

我开发了一款 Android应用程序,可以使用YouTube API在我的YouTube频道上显示视频.

我直接通过YouTubePlayerView类显示视频.我不在YouTube上使用用户授权,只在我的频道播放播放器中的视频.

我也在同一个Activity中使用了视频广告.我在YouTube视频之前展示视频广告.但我不确定这是如此重要.

此外,我还有另一项活动,显示来自我频道的视频列表.对于列表项,我使用视频标题和缩略图.我使用以下网址从YouTube网站获取标题和缩略图:

http://img.youtube.com/vi/" + url + "/default.jpg

http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v=" + id + "&format=json

一切正常.但是当我在Google Play上下载应用程序时,我的应用程序已被删除.这是他们写的:

“After a regular review,we have determined that your app downloads,monetizes,or otherwise accesses YouTube videos in violation of the YouTube Terms of Service or YouTube API Terms of Service. Accessing content,a product,or service in an unauthorized manner is a violation of the Developer Distribution Agreement,and is not allowed on Google Play”

我该怎么办,他们接受了我的申请?

解决方法

您的视频广告导致 Terms of Service of the Youtube API出现问题.

the sale of advertising,sponsorships,or promotions placed on or
within the YouTube audiovisual content or player; or

the sale of
advertising,or promotions on any page of the API Client
containing YouTube audiovisual content,unless other content not
obtained from YouTube appears on the same page and is of sufficient
value to be the basis for such sales.

这样做的原因是Google认为您试图从Youtube服务获得广告收入.如果您没有自己的任何内容(值得广告),那么您的应用程序将被删除.

相关文章

Android 如何解决dialog弹出时无法捕捉Activity的back事件 在...
Android实现自定义带文字和图片的Button 在Android开发中经常...
Android 关于长按back键退出应用程序的实现最近在做一个Andr...
android自带的时间选择器只能精确到分,但是对于某些应用要求...