Aws-amplify Api.get Federateinfo With Options Undefined Error
I am playing around with aws-amplify and react-native. I am trying to make an api.get call on my home screen but keep running into the error: Get item: key is federatedInfo with op
Solution 1:
I was calling the endpointUrl instead of the api's name. The endpointUrl goes into your amplify.configure. To manually configure I used this:
Amplify.configure({
Auth: {
identityPoolId: 'us-east-1:=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx', // REQUIRED - Amazon Cognito Identity Pool ID
region: 'us-east-1', // REQUIRED - Amazon Cognito Region
userPoolId: 'us-east-x_xxxxxxxxx', // OPTIONAL - Amazon Cognito User Pool ID
userPoolWebClientId: 'xxxxxxxxxxxxxxxxxxxxxxxxxx', // OPTIONAL - Amazon Cognito Web Client ID
},
API: {
endpoints: [
{
name: "api-name",
endpoint: "your api endpoint",
service: "your service",
region: "us-east-1"
}
]
}
});
You can find your api gateway information in aws console. Hope this helps.
Post a Comment for "Aws-amplify Api.get Federateinfo With Options Undefined Error"