我正在尝试使用看起来像的代码共享 youtube 视频
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("video/*");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("https://www.youtube.com/watch?v=PW_88sL_2dA"));
startActivity(Intent.createChooser(share, "Share Video"));
但这不会在任何应用程序中共享。我在这里做错了什么?