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 postman collection #653

Merged
merged 4 commits into from
Jul 13, 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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,3 +378,7 @@ yarn prisma migrate deploy
```

6. At this point you can re-deploy the `api-headless` deployment to trigger the standard flow of operation

## Postman

If you'd like to use Postman to query the API - see [postman doc](./tools/postman/readme.md)
Binary file added tools/postman/add_new_via_duplicate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tools/postman/edit_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tools/postman/env_demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tools/postman/export.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tools/postman/get_tokens.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tools/postman/import.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
106 changes: 106 additions & 0 deletions tools/postman/podkrepi.bg.postman_collection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"info": {
"name": "podkrepi.bg",
"schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json"
},
"item": [
{
"name": "get token",
"event": [
{
"listen": "test",
"script": {
"exec": [
"// console.log('[INFO] Request: ', JSON.stringify(request))",
"var data = JSON.parse(responseBody);",
"// console.log('[info] response:', this)",
"postman.setGlobalVariable(\"access_token\", data.accessToken);",
"postman.setGlobalVariable(\"refresh_token\", data.refreshToken);"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "accept",
"value": "*/*"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"email\": \"{{user}}\",\n \"password\": \"{{password}}\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": "{{podkrepi_address}}/api/v1/login"
},
"response": []
},
{
"name": "User donations",
"request": {
"method": "GET",
"header": [],
"url": "{{podkrepi_address}}/api/v1/donation/user-donations"
},
"response": []
}
],
"auth": {
"type": "bearer",
"bearer": {
"token": "{{access_token}}"
}
},
"event": [
{
"listen": "prerequest",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
""
]
}
}
],
"variable": [
{
"key": "podkrepi_address",
"value": "http://localhost:5010",
"type": "string"
},
{
"key": "user",
"value": "[email protected]",
"type": "string"
},
{
"key": "password",
"value": "$ecurePa33",
"type": "string"
}
]
}
23 changes: 23 additions & 0 deletions tools/postman/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Podkrepi.bg postman collection

## Getting started

- Get the postman app
- Import the collection ![import image missing](./import.png)
- Create an environment and add your username and password *ensure the password is a **secret** ![create an environment image missing](./env_demo.png)
- Get the tokens via the `get token` request (it will use the postman env variables from previous step and store a access_token in postman global variables) ![authenticate image missing](./get_tokens.png)

Done - now you can make authenticated requests: ![example for authenticated request](./user_donations_example.png)

## Contributing to the collection

The way to contribute is edit in a postman editor and then export it (Postman stores the collections in a db somewhere and there's no trivial way to have it store it where we need it - in the repo)

- Edit in postman

![add new image missing](./add_new_via_duplicate.png)

![edit](./user_donations_example.png)

- Export and overwrite in the repo
![export overwrite](./export.png)
Binary file added tools/postman/user_donations_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading