-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
I think AWS changed their endpoint for using the LocationService from geo to places.geo.
I had to override the endpoint URL to get it to work:
...
my $REGION = 'eu-west-1';
my $geo = Paws->service(
'LocationService',
...,
region => $REGION,
endpoint => URI->new("https://places.geo.${REGION}.amazonaws.com"),
);
my $response = $geo->SearchPlaceIndexForText( ... );
...
sub service { 'geo' } |
Metadata
Metadata
Assignees
Labels
No labels