我正在尝试整合从Yelp API V3获得的事件。 time_start
和time_end
节点中提供的活动时间与他们在Yelp网站上显示的活动时间不同。 V3 API的文档也没有提供有关时区的任何信息,这使得几乎无法获得任何事件的正确时间。
端点
https://api.yelp.com/v3/events/
{
"events": [{
"event_site_url": "https://www.yelp.com/events/london-the-european-information-security-summit-2017",
"id": "london-the-european-information-security-summit-2017",
"latitude": 51.5009690970451,
"longitude": -0.119283199310303,
"name": "The European Information Security Summit 2017",
"time_start": "2018-02-21 17:00",
"time_end": "2018-02-23 02:30"
}]
}
相同event on yelp将时间显示为
From: Wednesday, Feb 21, 9:00 am
To: Thursday, Feb 22, 6:30 pm
尝试设置不同的时区,但无法获得预期的结果。
任何帮助都将受到高度赞赏!