【发布时间】:2021-01-23 16:27:59
【问题描述】:
我一直在尝试使用 Python 发布请求以从网站上抓取一些 json 数据。我没有使用 GraphQL 的经验,但我认为这个网站是用它构建的。所以无论如何,问题是即使我使用 POST 方法请求它,它也会不断返回“GRAPHQL_PARSE_FAILED”(我将在下面发布结果)。我猜这是因为我的查询中包含一个“向左拐角的向下箭头”。由于消息说它无法解析'\u21B5'。
这是代码。
self.API_URL = 'https://pcmap-api.place.naver.com/graphql'
def get_location_info(self, query, start):
header = {
'authority': 'pcmap-api.place.naver.com',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36'
}
query = """
{
"query getRestaurants($input: RestaurantsInput, $isNmap: Boolean!, $isBounds: Boolean!) {↵ restaurants(input: $input) {↵ total↵ items {↵ ...RestaurantItemFields↵ easyOrder {↵ easyOrderId↵ easyOrderCid↵ businessHours {↵ weekday {↵ start↵ end↵ __typename↵ }↵ weekend {↵ start↵ end↵ __typename↵ }↵ __typename↵ }↵ __typename↵ }↵ baemin {↵ businessHours {↵ deliveryTime {↵ start↵ end↵ __typename↵ }↵ closeDate {↵ start↵ end↵ __typename↵ }↵ temporaryCloseDate {↵ start↵ end↵ __typename↵ }↵ __typename↵ }↵ __typename↵ }↵ yogiyo {↵ businessHours {↵ actualDeliveryTime {↵ start↵ end↵ __typename↵ }↵ bizHours {↵ start↵ end↵ __typename↵ }↵ __typename↵ }↵ __typename↵ }↵ __typename↵ }↵ nlu {↵ ...NluFields↵ __typename↵ }↵ brand {↵ name↵ isBrand↵ type↵ menus {↵ order↵ id↵ images {↵ url↵ desc↵ __typename↵ }↵ name↵ desc↵ price↵ isRepresentative↵ detailUrl↵ orderType↵ catalogId↵ source↵ menuId↵ nutrients↵ allergies↵ __typename↵ }↵ __typename↵ }↵ optionsForMap @include(if: $isBounds) {↵ maxZoom↵ minZoom↵ includeMyLocation↵ maxIncludePoiCount↵ center↵ spotId↵ __typename↵ }↵ __typename↵ }↵}↵↵fragment RestaurantItemFields on RestaurantSummary {↵ id↵ dbType↵ name↵ businessCategory↵ category↵ description↵ hasBooking↵ hasNPay↵ x↵ y↵ distance↵ imageUrl↵ imageUrls↵ imageCount↵ phone↵ virtualPhone↵ routeUrl↵ streetPanorama {↵ id↵ pan↵ tilt↵ lat↵ lon↵ __typename↵ }↵ roadAddress↵ address↵ commonAddress↵ blogCafeReviewCount↵ bookingReviewCount↵ totalReviewCount↵ bookingReviewScore↵ bookingUrl↵ bookingBusinessId↵ talktalkUrl↵ options↵ promotionTitle↵ agencyId↵ businessHours↵ microReview↵ tags↵ priceCategory↵ broadcastInfo {↵ program↵ date↵ menu↵ __typename↵ }↵ michelinGuide {↵ year↵ star↵ comment↵ url↵ hasGrade↵ isBib↵ alternateText↵ __typename↵ }↵ broadcasts {↵ program↵ menu↵ episode↵ broadcast_date↵ __typename↵ }↵ tvcastId↵ naverBookingCategory↵ saveCount↵ uniqueBroadcasts↵ isDelivery↵ markerLabel @include(if: $isNmap) {↵ text↵ style↵ __typename↵ }↵ imageMarker @include(if: $isNmap) {↵ marker↵ markerSelected↵ __typename↵ }↵ isTableOrder↵ isPreOrder↵ isTakeOut↵ bookingDisplayName↵ bookingVisitId↵ bookingPickupId↵ popularMenuImages {↵ name↵ price↵ bookingCount↵ menuUrl↵ menuListUrl↵ imageUrl↵ isPopular↵ usePanoramaImage↵ __typename↵ }↵ visitorReviewCount↵ visitorReviewScore↵ detailCid {↵ c0↵ c1↵ c2↵ c3↵ __typename↵ }↵ streetPanorama {↵ id↵ pan↵ tilt↵ lat↵ lon↵ __typename↵ }↵ __typename↵}↵↵fragment NluFields on Nlu {↵ queryType↵ user {↵ gender↵ __typename↵ }↵ queryResult {↵ ptn0↵ ptn1↵ region↵ spot↵ tradeName↵ service↵ selectedRegion {↵ name↵ index↵ x↵ y↵ __typename↵ }↵ selectedRegionIndex↵ otherRegions {↵ name↵ index↵ __typename↵ }↵ property↵ keyword↵ queryType↵ nluQuery↵ businessType↵ cid↵ branch↵ franchise↵ titleKeyword↵ location {↵ x↵ y↵ default↵ longitude↵ latitude↵ dong↵ si↵ __typename↵ }↵ noRegionQuery↵ priority↵ showLocationBarFlag↵ themeId↵ filterBooking↵ repRegion↵ repSpot↵ dbQuery {↵ isDefault↵ name↵ type↵ getType↵ useFilter↵ hasComponents↵ __typename↵ }↵ type↵ category↵ __typename↵ }↵ __typename↵}↵"
}
"""
data = {
'operationName': "getRestaurants",
'query': query,
'variables': {'input': {
'deviceType': "pcmap",
'display': "50",
'isNmap': "false",
'query': query,
'start': start
},
'isBound': 'true',
'isNmap': 'false'
}
}
r = requests.post(self.API_URL, headers=header, json=data).json()
正如您在查询中看到的,它具有 GraphQL 无法解析的箭头。我猜我必须将“查询”转换为 GraphQL 可以理解的某种形式。但这有点令人沮丧,因为我刚刚复制并粘贴了 Request Payload 刚刚显示的内容。我将查询放在 data 参数之外,因为它看起来太乱了。
这是结果。
{
"errors": [
{
"extensions": {
"code": "GRAPHQL_PARSE_FAILED"
},
"locations": [
{
"column": 89,
"line": 1
}
],
"message": "Syntax Error: Cannot parse the unexpected character \"\\u21B5\".",
"status": 500
}
]
}
我真的很感激你能想办法解决这个问题。谢谢!
【问题讨论】:
标签: python json post request graphql