Skip to content

Commit

Permalink
feat: add JWT support
Browse files Browse the repository at this point in the history
* docs: add Postman collection and env variables references
  • Loading branch information
bra-i-am committed Oct 2, 2024
1 parent d82113c commit ca083fd
Show file tree
Hide file tree
Showing 14 changed files with 657 additions and 117 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on ## [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to ## [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v7.3.0](https://github.com/eduNEXT/eox-tagging/compare/v7.2.0...v7.3.0) - (2024-10-01)

### Added

- **JWT Support**: API for `Tags` now supports JWT (JSON Web Tokens) authentication
aiming to mitigate the deprecation of Bearer and keep available the token-based authorization

## [v7.2.0](https://github.com/eduNEXT/eox-tagging/compare/v7.1.0...v7.2.0) - (2024-08-06)

### Added
Expand Down
75 changes: 75 additions & 0 deletions docs/resources/eox-tagging-env.postman_environment.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"id": "dcb570d2-743a-4d70-a131-7dae785995ab",
"name": "eox-tagging-env",
"values": [
{
"key": "domain",
"value": "https://tenant-a.redwood.releases.edunext.link",
"type": "default",
"enabled": true
},
{
"key": "token",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "username",
"value": "edx",
"type": "default",
"enabled": true
},
{
"key": "email",
"value": "[email protected]",
"type": "default",
"enabled": true
},
{
"key": "client_id",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "client_secret",
"value": "",
"type": "default",
"enabled": true
},
{
"key": "course_id",
"value": "course-v1:OpenedX+DemoX+DemoCourse",
"type": "default",
"enabled": true
},
{
"key": "course_mode",
"value": "verified",
"type": "default",
"enabled": true
},
{
"key": "user_tag_key",
"value": "",
"type": "any",
"enabled": true
},
{
"key": "courseenrollment_tag_key",
"value": "",
"type": "any",
"enabled": true
},
{
"key": "courseoverview_tag_key",
"value": "",
"type": "any",
"enabled": true
}
],
"_postman_variable_scope": "environment",
"_postman_exported_at": "2024-09-30T14:32:21.097Z",
"_postman_exported_using": "Postman/11.14.1"
}
Loading

0 comments on commit ca083fd

Please sign in to comment.