-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Image fetching performed using requests library
- Loading branch information
Showing
2 changed files
with
13 additions
and
7 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 |
---|---|---|
|
@@ -204,7 +204,7 @@ Create a new user using an email, password and an optional name. | |
{ | ||
"email": "[email protected]", | ||
"password": "password", | ||
"avatar_url": "http://example.com/example.png", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/1583873", | ||
"first-name": "John", | ||
"last-name": "Doe", | ||
"details": "example", | ||
|
@@ -550,7 +550,7 @@ Authorized user should be same as user in request body or must be admin. | |
"data": { | ||
"attributes": { | ||
"password": "password", | ||
"avatar_url": "http://example.com/example.png", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/1583873", | ||
"first-name": "John", | ||
"last-name": "Doe", | ||
"details": "example1", | ||
|
@@ -559,9 +559,6 @@ Authorized user should be same as user in request body or must be admin. | |
"twitter-url": "http://twitter.com/twitter", | ||
"instagram-url": "http://instagram.com/instagram", | ||
"google-plus-url": "http://plus.google.com/plus.google", | ||
"thumbnail-image-url": "http://example.com/example.png", | ||
"small-image-url": "http://example.com/example.png", | ||
"icon-image-url": "http://example.com/example.png" | ||
}, | ||
"type": "user", | ||
"id": "2" | ||
|