javascript - Not able to fetch Latitude and longitude from eventbrite api -


this query string fetch popular events within radius of specified location.

https://www.eventbriteapi.com/v3/events/search/?popular=off&location.address="+area+"&location.within="+radius+"&token=e5draick4272qqqibdr5 

but when query eventbrite api venue_id , how fetch lat , long event eventbrite api ?

please try venue param in fetching url eventbrite api, this:

$search_url?token=$token&q=&date_created.keyword=today&page=$repeat&sort_by=$date&expand=venue 

it solved issue , brought lat long along proper location of event.


Comments