Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/229.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何实现嵌入式youtube订阅按钮android?_Android_Youtube Api - Fatal编程技术网

如何实现嵌入式youtube订阅按钮android?

如何实现嵌入式youtube订阅按钮android?,android,youtube-api,Android,Youtube Api,如何将嵌入式YouTube订阅按钮添加到我的android应用程序?我需要一个按钮,订阅他们到我的频道,但留在我的应用程序一样的网页按钮,但android。我尝试了一个订阅链接,但它将它们从我的应用程序中删除。使用Youtube数据API为经过身份验证的用户的频道添加订阅。当按下按钮时,执行这部分代码 代码段: try { // Authorize the request. Credential credential = Auth.authorize(scopes

如何将嵌入式YouTube订阅按钮添加到我的android应用程序?我需要一个按钮,订阅他们到我的频道,但留在我的应用程序一样的网页按钮,但android。我尝试了一个订阅链接,但它将它们从我的应用程序中删除。

使用Youtube数据API为经过身份验证的用户的频道添加订阅。当按下按钮时,执行这部分代码

代码段:

try {
        // Authorize the request.
        Credential credential = Auth.authorize(scopes, "addsubscription");

        // This object is used to make YouTube Data API requests.
        youtube = new YouTube.Builder(Auth.HTTP_TRANSPORT, Auth.JSON_FACTORY, credential).setApplicationName(
                "youtube-cmdline-addsubscription-sample").build();

        // We get the user selected channel to subscribe.
        // Retrieve the channel ID that the user is subscribing to.
        String channelId = getChannelId();
        System.out.println("You chose " + channelId + " to subscribe.");

        // Create a resourceId that identifies the channel ID.
        ResourceId resourceId = new ResourceId();
        resourceId.setChannelId(channelId);
        resourceId.setKind("youtube#channel");

        // Create a snippet that contains the resourceId.
        SubscriptionSnippet snippet = new SubscriptionSnippet();
        snippet.setResourceId(resourceId);

        // Create a request to add the subscription and send the request.
        // The request identifies subscription metadata to insert as well
        // as information that the API server should return in its response.
        Subscription subscription = new Subscription();
        subscription.setSnippet(snippet);
        YouTube.Subscriptions.Insert subscriptionInsert =
                youtube.subscriptions().insert("snippet,contentDetails", subscription);
        Subscription returnedSubscription = subscriptionInsert.execute();

        // Print information from the API response.
        System.out.println("\n================== Returned Subscription ==================\n");
        System.out.println("  - Id: " + returnedSubscription.getId());
        System.out.println("  - Title: " + returnedSubscription.getSnippet().getTitle());

    }

这里有一个相关的附加参考。

我可以在任何地方查看应用程序源代码以供学习吗??