在我为我的Android应用程序实现GCM的过程中,我不得不多次创建一个配置文件(见这里)。因为我这样做了,所以你选择添加的服务被多次"添加",所以我的配置文件现在比必要的长得多,因为这些服务重复了多次。有谁知道如何从我的应用程序中"删除"服务?我基本上只想暂时启用 GCM。显然,我可以从 json 中删除它,但这在后端没有任何作用。我确定它在谷歌开发控制台中,但似乎找不到它。谢谢!
或者,这是 GCM 配置文件的正确布局吗?我不这么认为,因为我做了演示应用程序,它有一个长度为 ~500 个字符的配置文件,而我的配置文件从这个长度开始,每次我创建一个新文件时,它都会变得越来越长,现在有 1712 个字符。
配置文件:
{
"project_info":{
"project_id":"project-id",
"project_number":"96363846xxxx",
"name":"ProjectName"
},
"client":[
{
"client_info":{
"client_id":"android:xxx.xxx",
"client_type":1,
"android_client_info":{
"package_name":"package.name"
}
},
"oauth_client":[
],
"services":{
"analytics_service":{
"status":1
},
"cloud_messaging_service":{
"status":1,
"apns_config":[
]
},
"appinvite_service":{
"status":1,
"other_platform_oauth_client":[
]
},
"google_signin_service":{
"status":1
},
"ads_service":{
"status":1
}
}
},
{
"client_info":{
"client_id":"android:xxx.xxx",
"client_type":1,
"android_client_info":{
"package_name":"package.name"
}
},
"oauth_client":[
],
"services":{
"analytics_service":{
"status":1
},
"cloud_messaging_service":{
"status":2,
"apns_config":[
]
},
"appinvite_service":{
"status":1,
"other_platform_oauth_client":[
]
},
"google_signin_service":{
"status":1
},
"ads_service":{
"status":1
}
}
},
{
"client_info":{
"client_id":"android:xxx.xxx",
"client_type":1,
"android_client_info":{
"package_name":"package.name"
}
},
"oauth_client":[
],
"services":{
"analytics_service":{
"status":1
},
"cloud_messaging_service":{
"status":2,
"apns_config":[
]
},
"appinvite_service":{
"status":1,
"other_platform_oauth_client":[
]
},
"google_signin_service":{
"status":1
},
"ads_service":{
"status":1
}
}
},
{
"client_info":{
"client_id":"android:xxx.xxx",
"client_type":1,
"android_client_info":{
"package_name":"package.name"
}
},
"oauth_client":[
],
"services":{
"analytics_service":{
"status":1
},
"cloud_messaging_service":{
"status":2,
"apns_config":[
]
},
"appinvite_service":{
"status":1,
"other_platform_oauth_client":[
]
},
"google_signin_service":{
"status":1
},
"ads_service":{
"status":1
}
}
}
]
}
转到开发人员控制台。
转到相应的项目。
单击API和身份验证>> API>>您将在"禁用"顶部看到"已启用的API"选项卡>>。
这将停止对此时不希望调用的 API 的调用。当您需要它们时,可以从控制台再次启用它们。
希望这有帮助!