The context spec used to get the Amplify server context.
Input for GET operation.
Send a GET request
import { get } from 'aws-amplify/api/server';
//...
const restApiResponse = await runWithAmplifyServerContext({
nextServerContext: { request, response },
operation: async (contextSpec) => {
try {
const { body } = await get(contextSpec, input).response;
return await body.json();
} catch (error) {
console.log(error);
return false;
}
},
});
GET HTTP request (server-side)