0

我目前正在使用索引 API v3。

当我在循环中使用这个 API 时,我得到了这个错误:

无效的属性。“url”不是标准的 URL 格式

但我很确定我的网址是正确的,因为它是从 Google 搜索控制台下载的:

这是代码:

from oauth2client.service_account import ServiceAccountCredentials
import httplib2
import json

import pandas as pd

JSON_KEY_FILE = "key.json"
SCOPES = ["https://www.googleapis.com/auth/indexing"]

credentials = ServiceAccountCredentials.from_json_keyfile_name(JSON_KEY_FILE, scopes=SCOPES)
http = credentials.authorize(httplib2.Http())

# This file contains 2 column, URL and date
csv = pd.read_csv("my_data.csv")
csv[["URL"]][0:10].apply(lambda x: indexURL(x.to_string(), http), axis=1)

def indexURL(url, http):

    ENDPOINT = "https://indexing.googleapis.com/v3/urlNotifications:publish"

    content = {}
    content['url'] = url
    content['type'] = "URL_UPDATED"
    json_ctn = json.dumps(content)

    response, content = http.request(ENDPOINT, method="POST", body=json_ctn)

    result = json.loads(content.decode())

    if("error" in result):
        print("Error({} - {}): {}".format(result["error"]["code"], result["error"]["status"], result["error"]["message"]))
    else:
        print("urlNotificationMetadata.url: {}".format(result["urlNotificationMetadata"]["url"]))
        print("urlNotificationMetadata.latestUpdate.url: {}".format(result["urlNotificationMetadata"]["latestUpdate"]["url"]))
        print("urlNotificationMetadata.latestUpdate.type: {}".format(result["urlNotificationMetadata"]["latestUpdate"]["type"]))
        print("urlNotificationMetadata.latestUpdate.notifyTime: {}".format(result["urlNotificationMetadata"]["latestUpdate"]["notifyTime"]))

以下是 URL 示例列表:

在此处输入图像描述

谁能告诉我我的代码有什么问题?

非常感谢您的所有帮助。

4

1 回答 1

0

似乎即使我申请每一行,每个网址的末尾.strip()仍然有一个。\n

因此,我没有将一行一行的放到 lambda 中,而是将整个系列放到 lambda 中并使用 for 循环来处理它。

整个工作示例在这里:

使用 Python 3 的 Google Indexing API v3 工作示例

于 2019-05-27T05:10:42.217 回答