3

当我尝试使用 zillow API 时出现此错误

from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults
API_KEY = 'mykey'
zillow_data = ZillowWrapper(API_KEY)
address = '2114 Bigelow Ave'
zipcode = '98109'
rentzestimate = True
deep_search_response = zillow_data.get_deep_search_results(address,
                                                               zipcode,
                                                               rentzestimate)
result = GetDeepSearchResults(deep_search_response)

我得到状态 6:此帐户无权执行此 API 调用。

我查看了我的 zillow 帐户并检查了 API,所以我应该已经可以使用 API。在 zillow 设置页面上检查 API 后,我也等了几个小时。以前有人见过这个问题吗?

4

1 回答 1

1

只是想确认您实际上能够编辑 API 设置中的选项。根据这篇文章,zillow 似乎不允许人们这样做。

https://github.com/hanneshapke/pyzillow/issues/22

于 2020-08-12T14:10:10.347 回答