BasePathMapping

0

Hi all,
I'm struggling to get domain mapping working properly.

I'm trying to create:
https://api.dev.mycompany.com/estimates/
https://api.dev.mycompany.com/quotes/
So, two (and more in future) APIs mapped to my domain

I have domain api.dev.mycompany.com created on the APIGW. If I create a base path mapping with empty path and destination pointing to Estimate:Stage then the request to My API works fine (quotes is not configured at this stage).

If I set the path to 'estimates' (or anything else it seems) and destination again pointing to myapi:Stage then the request results in 430 Missing Authentication Token.

This is very frustrating as there is nothing printed in the APIGW CW log so I'm struggling to find the root of the problem

Aby ideas?

asked 5 years ago169 views
4 Answers
0
Accepted Answer

So what changes do I need make so that I can set the base path to /estimates so as to distinguish from other apis AND have the base path to the Lambda also as /estimates rather than /estimates/estimates?

You'll need to move your API definition up one level. So "/estimates" becomes "/" In your API definition "/estimates/foo" becomes "/foo", and so on.

Regards,
Bob

EXPERT
answered 5 years ago
0

I have domain api.dev.mycompany.com created on the APIGW. If I create a base path mapping with empty path and destination pointing to Estimate:Stage then the request to My API works fine (quotes is not configured at this stage).

When you say 'working fine' do you mean the path https://api.dev.mycompany.com/estimates/ works as expected?

If I set the path to 'estimates' (or anything else it seems) and destination again pointing to myapi:Stage then the request results in 430 Missing Authentication Token.

Is myapi:Stage the same as the previous Estimate:Stage?

If the answer to this and the previous question is 'yes', then the path you would need to hit would be:

https://api.dev.mycompany.com/estimates/estimates/

Regards,
Bob

EXPERT
answered 5 years ago
0

Hi Bob,
Thanks for the info.
Yes, myapi:Stage is the same as the previous Estimate:Stage?

I've tried https://api.dev.mycompany.com/estimates/estimates/ and that gets through to my Lambda (progress). But since the resource path on the lambda is /estimates, the request fails with 404 because the path passed in was /estimates/estimates/.
So what changes do I need make so that I can set the base path to /estimates so as to distinguish from other apis AND have the base path to the Lambda also as /estimates rather than /estimates/estimates?

Thanks again Bob

answered 5 years ago
0

Great, thanks Bob - all working now

answered 5 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions