Challenge URL Shortener Microservice

**Tell us what’s happening:
I feel like I’ve conmpleted the project, but I can’t get a pass?

Did I somehow misunderstand the problem?

Cause the code seems working fine to me

Your project link(s)

solution: https://boilerplate-project-urlshortener.flossertoday.repl.co
githubLink: https://replit.com/@Flossertoday/boilerplate-project-urlshortener

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.68.

Challenge: URL Shortener Microservice

Link to the challenge:

Hello there,

Top Tip: Use the browser console to debug what is happening:

In your case, CORS is needed to access your app from fCC, in order to run the tests. However, you are mounting cors after your routes:

// Basic Configuration
const port = 3000

app.use(cors())

Hope this clarifies

Now I pass. Thank you sky. First time to know that I can debug with browser.

:wink:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.