我正在尝试使用 API 在 Google Plus 上创建帖子。我正在使用 http 协议来创建帖子,如下所示。
URL : https://www.googleapis.com/plusDomains/v1/people/me/activities
Method : POST
header parameter :
Content-Type :application/json
Authorization : "browser key"
我在下面使用json
请求正文:
{
"object": {
"originalContent": "Happy Monday! #caseofthemondays",
},
"access": {
"items": [{
"type": "domain"
}],
"domainRestricted": true
}
}
现在1得到了回应:
Status : 401 Unauthorized
{
"error": {
"errors": [
{
"domain": "global", "reason": "authError",
"message": "Invalid Credentials", "locationType": "header",
"location": "Authorization"
}
],
"code": 401, "message": "Invalid Credentials"
}
}
我正在使用正确的密钥,还启用了 Google Plus API 和 Google domain api enable。谁能帮助我如何使用 Google Plus API 创建帖子。我正在尝试使用 HTTP 协议在 Google Plus 上创建新帖子。