Subscriptions: delete

需要授权

删除订阅。 查看示例

请求

HTTP 请求

DELETE https://www.googleapis.com/mirror/v1/subscriptions/id

参数

参数名称 说明
路径参数
id string 订阅的 ID。

授权

此请求需要获得下列范围的授权(详细了解身份验证和授权)。

范围
https://www.googleapis.com/auth/glass.timeline

请求正文

使用此方法时请勿提供请求正文。

响应

如果成功,此方法将返回空的响应正文。

示例

注意:此方法的代码示例并未列出所有受支持的编程语言(请参阅客户端库页面,查看受支持的语言列表)。

使用 Java 客户端库

import com.google.api.services.mirror.Mirror;

import java.io.IOException;

public class MyClass {
 
// ...

 
/**
   * Delete a subscription to a collection.
   *
   * @param service Authorized Mirror service.
   * @param collection Collection to unsubscribe from (supported values are
   *        "timeline" and "locations").
   */

 
public static void unsubscribeFromNotifications(Mirror service, String collection) {
   
try {
      service
.subscriptions().delete(collection).execute();
   
} catch (IOException e) {
     
System.err.println("An error occurred: " + e);
   
}
 
}

 
// ...
}

使用 .NET 客户端库

using System;

using Google.Apis.Mirror.v1;

public class MyClass {
 
// ...

 
/// <summary>
 
/// Delete a subscription to a collection.
 
/// </summary>
 
/// <param name='service'>Authorized Mirror service.</param>
 
/// <param name='collection'>
 
/// Collection to unsubscribe from (supported values are "timeline" and
 
/// "locations").
 
/// </param>
 
public static void UnsubscribeFromNotifications(MirrorService service,
     
String collection) {
   
try {
      service
.Subscriptions.Delete(collection).Fetch();
   
} catch (Exception e) {
     
Console.WriteLine("An error occurred: " + e.Message);
   
}
 
}

 
// ...
}

使用 PHP 客户端库

/**
 * Delete a subscription to a collection.
 *
 * @param Google_MirrorService $service Authorized Mirror service.
 * @param string $collection Collection to unsubscribe from (supported values
 *                           are "timeline" and "locations").
 */

function unsubscribeFromNotifications($service, $collection) {
 
try {
    $service
->subscriptions->delete($collection);
 
} catch (Exception $e) {
   
print 'An error occurred: ' . $e->getMessage();
 
}
}

使用 Python 客户端库

from apiclient import errors
# ...

def unsubscribe_from_notifications(service, collection):
 
"""Delete a subscription to a collection.

  Args:
    service: Authorized Mirror service.
    collection: Collection to unsubscribe from (supported values are
                "
timeline" and "locations"
  """

 
try:
    service
.subscriptions().delete(collection).execute()
 
except errors.HttpError, error:
   
print 'An error occurred: %s' % error

使用 Ruby 客户端库

##
# Delete a subscription to a collection.
#
# @param [Google::APIClient] client
#   Authorized client instance.
# @param [String] collection
#   Collection to unsubscribe from (supported values are "timeline" and
#   "locations").
# @return nil
def unsubscribe_from_notifications(client, collection)
  mirror
= client.discovered_api('mirror', 'v1')
  result
= client.execute(
   
:api_method => mirror.subscriptions.delete,
   
:parameters => { 'id' => collection })
 
if result.error?
    puts
"An error occurred: #{result.data['error']['message']}"
 
end
end

使用 Go 客户端库

import (
        "code.google.com/p/google-api-go-client/mirror/v1"
        "fmt"
)

// UnsubscribeFromNotifications deletes a subscription to a collection.
func UnsubscribeFromNotifications(g *mirror.Service, collection string) error {
        err := g.Subscriptions.Delete(collection).Do()
        if err != nil {
                fmt.Printf("An error occurred: %v\n", err)
                return err
        }
        return nil
}

不使用客户端库。

DELETE /mirror/v1/subscriptions/timeline HTTP/1.1
Authorization: Bearer auth token