Coder Social home page Coder Social logo

API name is invalid about amplify-js HOT 5 CLOSED

drewboardman avatar drewboardman commented on June 12, 2024
API name is invalid

from amplify-js.

Comments (5)

drewboardman avatar drewboardman commented on June 12, 2024

If this may help, here is a function I'm finding in the stack trace:

export const resolveApiUrl = (amplify, apiName, path, queryParams) => {
    const urlStr = amplify.getConfig()?.API?.REST?.[apiName]?.endpoint;
    assertValidationError(!!urlStr, RestApiValidationErrorCode.InvalidApiName);
    try {
        const url = new AmplifyUrl(urlStr + path);
        if (queryParams) {
            const mergedQueryParams = new AmplifyUrlSearchParams(url.searchParams);
            Object.entries(queryParams).forEach(([key, value]) => {
                mergedQueryParams.set(key, value);
            });
            url.search = new AmplifyUrlSearchParams(mergedQueryParams).toString();
        }
        return url;
    }
    ```

from amplify-js.

drewboardman avatar drewboardman commented on June 12, 2024

I think this may have to do with the cognito configuration looking like it may be from the v5 (top level).

from amplify-js.

cwomack avatar cwomack commented on June 12, 2024

Hello, @drewboardman 👋 and thanks for opening this issue. It looks like your logged config has a trailing slash which might be causing issues. The rest of your code looks proper to me, and your path should have the leading slash. Can you double check to see if you might be adding an extra slash into the endpoint somewhere?

from amplify-js.

cwomack avatar cwomack commented on June 12, 2024

@drewboardman, wanted to check in again and see if you are still experiencing this issue. If so, do you have a screenshot of request call possibly or a log of the recovery suggestion in the error to help narrow down where this is being thrown?

from amplify-js.

chrisbonifacio avatar chrisbonifacio commented on June 12, 2024

Hi 👋 Closing this as we have not heard back from you. If you are still experiencing this issue and in need of assistance, please feel free to comment and provide us with any information previously requested by our team members so we can re-open this issue and be better able to assist you.

Thank you!

from amplify-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.