I have a script that posts semi-regularly to a twitter feed using the
post(‘statuses/update’…
API command. I am posting the following to the api:
‘status’ => trim($tw),
‘lat’ => $lat,
‘long’ => $lng,
‘display_coordinates’ => ‘true’,
‘geo_enabled’ => ‘true’
$lat and $lng are regular lat and long coordinates for a specific area in the city. When the tweet is posted, I get a geolocate button on the tweet, but it only offers the generic city name. I’d like to be able to show the exact location. Is this possible?
I’ve tried every variant I can think of, but I only get to a ‘city’ level and never more detailed. I own the account being posted to, and have made sure geo is enabled.
Thanks for any help on this.