Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. 1. эти эндпоинты изменяют статус места в профиле пользователя и в ответе возвращают место с измененным статусом
  2. save http://api/places/{id}/?checked=false PUT status: false -> saved
  3. check http://api/places/{id}/?checked=true PUT status: saved -> checked
  4. request body: {
  5. comment: comment,
  6. stars: stars
  7. }
  8. unsave http://api/places/{id}/?checked=false DELETE status: saved -> false
  9. uncheck http://api/places/{id}/?checked=true DELETE status: checked -> saved
  10. 2.
  11. http://api/followings
  12. http://api/followers
  13. response: [
  14. {
  15. displayName: 'Xavier Lcq',
  16. id: '10155503355701211',
  17. photoURL: https://graph.facebook.com/10155503355701211/picture?type=large
  18. },
  19. {
  20. displayName: 'Xavier Lcq',
  21. id: '10155503355701211',
  22. photoURL: https://graph.facebook.com/10155503355701211/picture?type=large
  23. }
  24. ]
  25. http://api/follow/id POST
  26. {
  27. displayName: 'Xavier Lcq',
  28. id: '10155503355701211',
  29. photoURL: https://graph.facebook.com/10155503355701211/picture?type=large
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement