Login/register 308 error
I have a web app + database hosted in python which I have tested and works for creating, logging in and logging out user. Now I'm trying to make the requests in my android application written in java. However, I keep getting 308 error.
Here is my RegisterActivity.java
and this is the most important part of GsonRequest which should parse JSON into string:
Any help is appreciated!
27 Replies
⌛
This post has been reserved for your question.
Hey @Erky! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
dont think so
# Create user
@app.route('/user/', methods=['POST'])
def create_user():
# Get the data from the database
data = request.get_json()
username = data['username']
password = data['password']
# Handle already existing user
user_already_exists = User.query.filter_by(username=username).first()
if user_already_exists is not None:
return jsonify(response='Error: User already exists'),409
# Generate password hash and add it to a new user
new_user = User(username=username)
new_user.generate_password_hash(password)
# Add the new user to the database
db.session.add(new_user)
db.session.commit()
# Return value
return jsonify(response='Successfully created a new user'), 200
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
yeah, maybe i can set it to follow redirects?
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
how
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
in python im using flask to send requests i think, and then im using volley to post requests, and then gson library to convert
but not sure, something in volley i think, sorry not 100% sure
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
i dont see what changed?
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
E/Volley: [16230] NetworkUtility.shouldRetryException: Unexpected response code 400 for https://tddd80-app-joneri.azurewebsites.net/user/
now got this errorUnknown User•2y ago
Message Not Public
Sign In & Join Server To View
unfortunately dont think i can do that, i think my friend is hosting the web app
why's that?
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
ohh I see at userObject or? not seeing headers
because its still going into
error -> im going here
response -> not here
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
yes , but userObject is a Map with <string> <string> which should take in username and password, but i dont get how i can modify so i get the "headers"
i have the strings
user
pass
which i want to pass as headers into my gsonrequest
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
how can i post json body data?
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
is it possible to post the user and pass strings as parameters in my request?
so I should make a StringRequest instead?
tried what you suggested and now got 500 error,
oh wait i think i got it to work! thank you man 🙂
If you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
Post Closed
This post has been closed by <@272473391041347585>.