Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
2,843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. connecting to XXXXXX
  2. ..........
  3. WiFi connected
  4. IP address:
  5. 192.168.0.46
  6. mDNS responder started
  7. Loading config
  8. Failed to open config file
  9. No refresh token found. Requesting through browser
  10. Open browser at http://esp8266.local
  11. WiFi connected!
  12. HTTP server started
  13. def8c022731c4d51819d0d61bc8364b4
  14. http%3A%2F%2Fesp8266.local%2Fcallback%2F
  15. Code: XXXXXX
  16. Requesting URL: POST /api/token HTTP/1.1
  17. Host: accounts.spotify.com
  18. Authorization: Basic XXXXXX
  19. Content-Length: 425
  20. Content-Type: application/x-www-form-urlencoded
  21. Connection: close
  22.  
  23. grant_type=authorization_code&code=XXXXXX&redirect_uri=http%3A%2F%2Fesp8266.local%2Fcallback%2F
  24. HTTP/1.1 200 OK
  25. Server: nginx
  26. Date: Sun, 20 Jan 2019 20:07:41 GMT
  27. Content-Type: application/json
  28. Content-Length: 478
  29. Connection: close
  30. Vary: Accept-Encoding
  31. X-Content-Type-Options: nosniff
  32. Strict-Transport-Security: max-age=31536000
  33.  
  34. start document
  35. {"access_token":"XXXXXX
  36. access_token=XXXXXX
  37. ","token_type":"Bearer
  38. token_type=Bearer
  39. ","expires_in":3600
  40. expires_in=3600
  41. ,"refresh_token":"XXXXXX
  42. refresh_token=XXXXXX
  43. ","scope":"user-modify-playback-state user-read-playback-state user-read-currently-playing user-read-private
  44. scope=user-modify-playback-state user-read-playback-state user-read-currently-playing user-read-private
  45. "}Refresh token: XXXXXX
  46. Access Token: XXXXXX
  47. Requesting URL: GET /v1/me/player/currently-playing HTTP/1.1
  48. Host: api.spotify.com
  49. Authorization: Bearer XXXXXX
  50. Connection: close
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement