Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. //Trying to get accestoken:
  2. POST /rs/shops/PMAppReview/token HTTP/1.1
  3. Content-Type: application/x-www-form-urlencoded
  4. Host: sandbox.epages.com
  5. Connection: close
  6. User-Agent: Paw/2.2.9 (Macintosh; OS X/10.11.0) GCDHTTPRequest
  7. Content-Length: 131
  8.  
  9. code=rkPHrw54OSzKpiBWphK415WszGFMewCy&client_id=C1B03F81-FEED-4BF6-A801-C2DDDE0AC857&client_secret=XW5egIAezSzn7V14zUXnxsbPaTNowoTX
  10.  
  11. //Response:
  12. HTTP/1.1 200 OK
  13. Server: nginx
  14. Date: Tue, 09 Feb 2016 17:31:13 GMT
  15. Content-Type: application/json
  16. Content-Length: 51
  17. Connection: close
  18. Access-Control-Allow-Origin: *
  19. X-ePages-Media-Type: application/vnd.epages.v1+json
  20. X-Powered-By: ePagesJ(6.17.38)
  21. Vary: Accept-Encoding,User-Agent
  22.  
  23. {"access_token":"EIGHfD2cMacFtXI9Vz4aXua3aVLT1lRy"}
  24.  
  25. //Trying to sync products
  26. GET /rs/shops/PMAppReview/products?page=1&resultsPerPage=50&currency=EUR&locale=nl_NL HTTP/1.1
  27. Authorization: Bearer EIGHfD2cMacFtXI9Vz4aXua3aVLT1lRy
  28. Content-Type: application/x-www-form-urlencoded
  29. Host: sandbox.epages.com
  30. Connection: close
  31. User-Agent: Paw/2.2.9 (Macintosh; OS X/10.11.0) GCDHTTPRequest
  32.  
  33. //Response
  34. HTTP/1.1 400 Bad Request
  35. Server: nginx
  36. Date: Tue, 09 Feb 2016 17:36:49 GMT
  37. Content-Type: application/json
  38. Content-Length: 138
  39. Connection: close
  40. Access-Control-Allow-Origin: *
  41. X-Powered-By: ePagesJ(6.17.38)
  42. X-RateLimit-Reset: 2016-02-09T18:36:49.730Z
  43. X-RateLimit-Limit: 6000
  44. X-RateLimit-Remaining: 5999
  45. Vary: Accept-Encoding,User-Agent
  46.  
  47. {"message":"Locale [nl_NL] not available. Available locales: [de_DE], Request: GET /rs/shops/PMAppReview/products","status":"Bad Request"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement