ed-roh/mern-social-media

400 (Bad Request)

GhermanTeodora opened this issue · 15 comments

Hello! When I try to log in I get this error: "POST http://localhost:3001/auth/login 400 (Bad Request) Form.jsx:82". I did not change any of the backend code and I connected to mongodb, I even put your predefined users and posts in collections and tried one of them to log in and it is not working. What should I do?

Hi, Can you try to your mongodb Atlas>database tab>overview
Click for the connect button and this image will pops up. after that click the "Connect your application"
Then when you copy/paste the link into your .env file, make sure to remove " password including the greater/lesser than " and place your password there.
mongodb+srv://YOURMONGODBATLASUSERNAMEFROMYOURCLUSTER:@CLUSTERNAME.RANDOMCHAR.mongodb.net/?retryWrites=true&w=majority
image

Yes, I have already done this.

Yes, I have already done this.

image
try copy .env to server folder

Can you run it?

Hello! When I try to log in I get this error: "POST http://localhost:3001/auth/login 400 (Bad Request) Form.jsx:82". I did not change any of the backend code and I connected to mongodb, I even put your predefined users and posts in collections and tried one of them to log in and it is not working. What should I do?

Maybe you are not running the backend server. See if your backend server is also running

I'm also getting the same 400 error with login. But I noticed something, that when I register, the img I uploaded gets into the server/public folder and the commad line of the server is responding to every single submit I make. It's just that I'm getting the 404 for my register(the img still goes thru tho).

I've solved the problem somehow :) . This is a routing problem. In the routes/auth.js file, I added this. router.post("/register", register); Now, when I register, it takes me to the login, I fill the login and got to the home page. I don't know it's right or not, I'm still a beginner at express, but it sort of solve the problem right now. Hope this help!

I've solved the problem somehow :) . This is a routing problem. In the routes/auth.js file, I added this. router.post("/register", register); Now, when I register, it takes me to the login, I fill the login and got to the home page. I don't know it's right or not, I'm still a beginner at express, but it sort of solve the problem right now. Hope this help!

do you add your own database with mongo?

do you add your own database with mongo?

Yes, I did. And the data I filled in the register page goes into the collection, inside the test/user. So I guess it's kind of working?
¯\ _ (ツ)_/¯

Hello! When I try to log in I get this error: "POST http://localhost:3001/auth/login 400 (Bad Request) Form.jsx:82". I did not change any of the backend code and I connected to mongodb, I even put your predefined users and posts in collections and tried one of them to log in and it is not working. What should I do?

Maybe you are not running the backend server. See if your backend server is also running

I don't know more about backend i write localhost:3001 and i saw my backend not working how can i run backend

I don't know more about backend i write localhost:3001 and i saw my backend not working how can i run backend

It is very simple. I assume you have node installed.

  1. Open terminal in your VS code.
  2. Navigate to the location of your server folder.
  3. run node index.js

This will run your server. You don't need to see or open the port of your backend in browser, you just run the command. Then you register in your frontend, and when you click the register button, your server terminal should respond. Hope this helps!

I don't know more about backend i write localhost:3001 and i saw my backend not working how can i run backend

It is very simple. I assume you have node installed.

  1. Open terminal in your VS code.
  2. Navigate to the location of your server folder.
  3. run node index.js

This will run your server. You don't need to see or open the port of your backend in browser, you just run the command. Then you register in your frontend, and when you click the register button, your server terminal should respond. Hope this helps!

I registered it worked and when i login it says Status Code: 204 No Content and the following it says Status Code: 500 Internal Server Error

I registered it worked and when i login it says Status Code: 204 No Content and the following it says Status Code: 500 Internal Server Error

Hold on, have you created your own mongodb database on mongodb clusters?

I registered it worked and when i login it says Status Code: 204 No Content and the following it says Status Code: 500 Internal Server Error

Hold on, have you created your own mongodb database on mongodb clusters?

Yes

Hold on, have you created your own mongodb database on mongodb clusters?

Yes

I guess this would be MongoDB cluster malfunction. Here's a couple methods I suggest.

  • Try reloading your cluster.
  • Adding your IP address to the cluster.
  • Register again and check in the browse collections tab.
  • Recreating another cluster or project.