Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. (let ((url-inhibit-uncompression t))
  2. (switch-to-buffer
  3. (url-retrieve-synchronously
  4. "http://api.stackexchange.com/2.2/filter/create")))
  5.  
  6. HTTP/1.1 200 OK
  7. Cache-Control: private
  8. Content-Type: application/json; charset=utf-8
  9. Content-Encoding: gzip
  10. Access-Control-Allow-Origin: *
  11. Access-Control-Allow-Methods: GET, POST
  12. Access-Control-Allow-Credentials: false
  13. X-Content-Type-Options: nosniff
  14. Date: Sat, 01 Nov 2014 03:19:40 GMT
  15. Content-Length: 1903
  16.  
  17. {
  18. "quota_remaining": 178,
  19. "quota_max": 300,
  20. "has_more": false,
  21. "items": [
  22. {
  23. "filter": "default",
  24. "filter_type": "safe",
  25. "included_fields": [
  26. ".backoff",
  27. ".error_id",
  28. ".error_message",
  29. .................
  30. "write_permission.min_seconds_between_actions",
  31. "write_permission.object_type",
  32. "write_permission.user_id"
  33. ]
  34. }
  35. ]
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement