-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new info Add : -New CDN endpoint -New Messaging endpoint -Spotify Login Url * fix issue with github build * Made some Adjustments -fix typing issues -add new analytics logs -add last Bereal api endpoint with response -add the help section with the api endpoints -Add message content -fix spotify links * -fix typing issues -add new analytics logs -add last Bereal api endpoint with response -add the help section with the api endpoints -Add message content -fix spotify links * fix Github build issue again -fix typing issues -add new analytics logs -add last Bereal api endpoint with response -add the help section with the api endpoints -Add message content -fix spotify links * remove issue with github build -fix typing issues -add new analytics logs -add last Bereal api endpoint with response -add the help section with the api endpoints -Add message content -fix spotify links * fix Github buid issue again -fix typing issues -add new analytics logs -add last Bereal api endpoint with response -add the help section with the api endpoints -Add message content -fix spotify links * Last fix for Github build just for this : | * fix issue * finally found the issue (maybe) * remove issue * remove issue * remove repeated Lines 72 and 74
- Loading branch information
Showing
7 changed files
with
87 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: "API endpoint: Zendesk Help" | ||
--- | ||
|
||
|
||
## Verified Endpoints | ||
|
||
| URL | Use | | ||
|---------------------------------------------------------------------------|-------------------------------------| | ||
| `https://berealapp.zendesk.com/api/private/mobile_sdk/settings/id.json` | GET the settings of the user | | ||
| `https://berealapp.zendesk.com/attachments/token/ID/?name=ID.jpeg` | GET the stored photo (help message) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: "API endpoint: spotify" | ||
--- | ||
|
||
|
||
## Verified Endpoints | ||
|
||
| URL | Use | | ||
|---------------------------------------------------------------------------------|--------------------------------| | ||
| `https://mobile.bereal.com/api/music/spotify/login` | GET login information | | ||
| `https://mobile.bereal.com/api/music/spotify/token` | GET login token | | ||
|
||
``` | ||
https://accounts.spotify.com/authorize?response_type | ||
=code&client_id=ID&scope=user-read-currently-playing&redirect_uri | ||
=https%3A%2F%2Fmobile.bereal.com%2Fapi%2Fmusic%2Fspotify%2Ftoken&state=TOKEN | ||
response_type: code | ||
client_id: CLIENT_ID | ||
scope: user-read-currently-playing | ||
redirect_uri: https://mobile.bereal.com/api/music/spotify/token | ||
state: STATE_ID | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters