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

refactor: Add query param in drm license request url #14

Merged
merged 1 commit into from
Oct 17, 2023
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
2 changes: 1 addition & 1 deletion docs/mobile-sdk/android-native-sdk/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ override fun onCreate(savedInstanceState: Bundle?) {
val parameters = TpInitParams.Builder()
.setVideoId(videoId)
.setAccessToken(accessToken)
.setOrgCode("your_subdomain")
.setOrgCode("organization_id")
.build()
player.load(parameters)
}
Expand Down
4 changes: 2 additions & 2 deletions docs/server-api/drm.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ sidebar_position: 5

To play DRM protected videos, your player should request DRM licence from our URL.

This API requires [authentication Header](../server-api/authentication.md)
This API requires [access_token](../video-embedding/authentication.md) in query param for authentication.

```bash
POST: https://app.tpstreams.com/api/v1/<organization_id>/assets/<asset_id>/drm_license/
POST: https://app.tpstreams.com/api/v1/<organization_id>/assets/<asset_id>/drm_license/?access_token={{access_token}}/
```

:::note
Expand Down