如何启动 Youtube 应用程序来打开频道?

发布于 2025-01-08 14:49:06 字数 222 浏览 0 评论 0原文

我想从我的应用程序访问 youtube 以打开频道。我已经寻找了一个解决方案,但我刚刚找到了如何打开/流式传输视频:

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:VIDEO_ID"));
startActivity(i);

但是直接打开频道怎么样?

非常感谢。

I want to access from my application to youtube to open a channel. I've searched for a solution but i just found how to open/stream a video :

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:VIDEO_ID"));
startActivity(i);

But what about opening directly a channel?

Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

春夜浅 2025-01-15 14:49:06
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(urlStr));
startActivity(intent);

如果您使用 YouTube 频道的网址,例如:http://www.youtube.com/user/JustinBieberVEVO

应该为您提供打开 YouTube 到给定频道的选项。

希望这有帮助!

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(urlStr));
startActivity(intent);

if you use the url of a youtube channel such as: http://www.youtube.com/user/JustinBieberVEVO

this should give you the option to open youtube to the given channel.

hope this helps!

吻风 2025-01-15 14:49:06

我知道这个答案已经晚了,但我还是想分享这个。这对我有用:

vnd.youtube://user/channel/channel_id

这会直接在 YouTube 应用中打开频道。无需询问用户。

更新

没有包含任何代码,因为我正在使用React Native,也许人们正在寻找本机代码。无论如何,你走吧:

Linking
    .openURL( 'vnd.youtube://user/channel/' + channel_id )
    .catch( ... )

但是,我认为本机代码中应该是这样的:

Intent appIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube://user/channel/" + channel_id));
try {
  context.startActivity(appIntent);
} catch (ActivityNotFoundException ex) { ... }

我对本机代码不太熟悉,所以它可能是错误的,但应该像指南一样工作

I know this answer is late and such but i wanted to share this anyway. This worked for me:

vnd.youtube://user/channel/channel_id

This opens the channel directly in the youtube app. Without asking the user.

Update

Didn't include any code because i was using React Native, and maybe people is looking for native code. Anyway here you go:

Linking
    .openURL( 'vnd.youtube://user/channel/' + channel_id )
    .catch( ... )

But, i think in native code it should be something like this:

Intent appIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube://user/channel/" + channel_id));
try {
  context.startActivity(appIntent);
} catch (ActivityNotFoundException ex) { ... }

I'm not too familiarized with native code so it may be wrong, but should work like a guide.

岁月静好 2025-01-15 14:49:06
vnd.youtube://channel/channel_id

对于自定义 URL
vnd.youtube://c/channel_permalink

vnd.youtube://channel/channel_id

For custon URL
vnd.youtube://c/channel_permalink

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文