Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
865 views
in Technique[技术] by (71.8m points)

seo - Google Indexing API with Python

Here is my Code snippet to request google indexing using python.

from oauth2client.service_account import ServiceAccountCredentials
import httplib2

SCOPES = [ "https://www.googleapis.com/auth/indexing" ]
ENDPOINT = "https://indexing.googleapis.com/v3/urlNotifications:publish"

# service_account_file.json is the private key that you created for your service account.
JSON_KEY_FILE = "myJSON.json"

credentials = ServiceAccountCredentials.from_json_keyfile_name(JSON_KEY_FILE, scopes=SCOPES)

http = credentials.authorize(httplib2.Http())


# Define contents here as a JSON string
content = """
{
"url": "https://locksro.weebly.com/",
"type": "URL_UPDATED"
}"""
    #send the request
response, content = http.request(ENDPOINT, method="POST", body=content)
print(response.status)

To ensure that the Link Indexed, I check it by searching {site:locksro.weebly.com} in google, but no result. I cannot figure out the problem as the response.status is 200

question from:https://stackoverflow.com/questions/65889022/google-indexing-api-with-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

it worked me

import httplib2
 
SCOPES = [ "https://www.googleapis.com/auth/indexing" ]
ENDPOINT = "https://indexing.googleapis.com/v3/urlNotifications:publish"
 
# service_account_file.json is the private key that you created for your service account.
JSON_KEY_FILE = "myJSON.json"
 
credentials = ServiceAccountCredentials.from_json_keyfile_name(JSON_KEY_FILE, scopes=SCOPES)
 
http = credentials.authorize(httplib2.Http())
 
# Define contents here as a JSON string.
# This example shows a simple update request.
# Other types of requests are described in the next step.
 
content = """{
  "url": "https://mysmartpros.com/tutor-tuition-online-jobs/economics",
  "type": "URL_UPDATED"
}"""
 
response, content = http.request(ENDPOINT, method="POST", body=content)
 
print(response) 
print(content)```

{'content-type': 'application/json; charset=UTF-8', 'vary': 'Origin, X-Origin, Referer', 'date': 'Mon, 25 Jan 2021 23:48:59 GMT', 'server': 'ESF', 'cache-control': 'private', 'x-xss-protection': '0', 'x-frame-options': 'SAMEORIGIN', 'x-content-type-options': 'nosniff', 'transfer-encoding': 'chunked', 'status': '200', 'content-length': '299', '-content-encoding': 'gzip'}


b'{
  "urlNotificationMetadata": {
    "url": "https://mysmartpros.com/tutor-tuition-online-jobs/economics",
    "latestUpdate": {
      "url": "https://mysmartpros.com/tutor-tuition-online-jobs/economics",
      "type": "URL_UPDATED",
      "notifyTime": "2021-01-25T23:48:59.783031464Z"
    }
  }
}
'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...