Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add first request files #64

Merged
merged 1 commit into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .requests/http-client.env.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"Lokal": {
"baseUrl": "http://localhost:8080",
"user": {
"email": "[email protected]",
"password": "CHANGEME"
}
},
"Test (test.dancier.net)": {
"baseUrl": "https://test-dancer.dancier.net",
"user": {
"email": "[email protected]",
"password": "CHANGEME"
}
}
}
47 changes: 47 additions & 0 deletions .requests/profile.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
### Login (run once to retrieve access token)
POST {{baseUrl}}/authentication/login
Content-Type: application/json

{
"email": "{{user.email}}",
"password": "{{user.password}}"
}
> {% client.global.set("access_token", response.body.accessToken); %}


### Get user's proile (and save it)
GET {{baseUrl}}/profile
Authorization: Bearer {{access_token}}

> {% client.global.set("profile", response.body.toString()); %}


### Save user's profile
PUT {{baseUrl}}/profile
Content-Type: application/json

{
"size": 130,
"gender": "FEMALE",
"birthDate": "1996-01-19",
"ableTo": [
{
"dance": "Tango",
"level": "BASIC",
"leading": "LEAD"
}
],
"wantsTo": [
{
"dance": "Tango",
"level": "INTERMEDIATE",
"leading": "FOLLOW"
}
],
"email": "[email protected]",
"zipCode": "10001",
"city": "Hamburg",
"country": "GER",
"profileImageHash": "1a7efd460ee0be68011291c9f6b1ac5d9b03f9974b66c27b14e59887bf910f8c",
"aboutMe": null
}
35 changes: 35 additions & 0 deletions .requests/register.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
### Perform Captcha to Login as Human
POST {{baseUrl}}/authentication/loginAsHuman
X-Captcha-Token: token

> {% client.global.set("access_token", response.body.accessToken); %}

### Perform initial registration
POST {{baseUrl}}/authentication/registrations
Content-Type: application/json

{
"acceptTermsAndConditions": true,
"email": "{{user.email}}",
"password": "{{user.password}}"

}

### verify email
PUT {{baseUrl}}/authentication/email-validations/asdf
Authorization: Bearer {{access_token}}

### Login with new user
POST {{baseUrl}}/authentication/login
Content-Type: application/json

{

}

> {% client.global.set("access_token", response.body.accessToken); %}


### Get user's profile
GET {{baseUrl}}/profile
Authorization: Bearer {{access_token}}
Loading