Update lang/rest readme to new format #1166
This commit is contained in:
parent
c22d4e42a9
commit
f6db32237d
1 changed files with 45 additions and 42 deletions
|
@ -1,55 +1,58 @@
|
||||||
#+TITLE: :lang rest
|
#+TITLE: lang/rest
|
||||||
|
#+DATE: March 17, 2017
|
||||||
|
#+SINCE: v1.3
|
||||||
|
#+STARTUP: inlineimages nofold
|
||||||
|
|
||||||
|
* Table of Contents :TOC_3:noexport:
|
||||||
|
- [[#description][Description]]
|
||||||
|
- [[#maintainers][Maintainers]]
|
||||||
|
- [[#module-flags][Module Flags]]
|
||||||
|
- [[#plugins][Plugins]]
|
||||||
|
- [[#hacks][Hacks]]
|
||||||
|
- [[#prerequisites][Prerequisites]]
|
||||||
|
- [[#features][Features]]
|
||||||
|
- [[#configuration][Configuration]]
|
||||||
|
- [[#troubleshooting][Troubleshooting]]
|
||||||
|
|
||||||
|
* Description
|
||||||
This module adds [[https://en.wikipedia.org/wiki/Representational_state_transfer][REST]] support.
|
This module adds [[https://en.wikipedia.org/wiki/Representational_state_transfer][REST]] support.
|
||||||
|
|
||||||
+ Code-completion (~company-restclient~)
|
+ Code-completion (~company-restclient~)
|
||||||
+ Code evaluation
|
+ Code evaluation
|
||||||
|
+ Imenu support for ~restclient-mode~
|
||||||
+ org-mode: babel support (~ob-restclient~)
|
+ org-mode: babel support (~ob-restclient~)
|
||||||
|
|
||||||
#+begin_quote
|
#+begin_quote
|
||||||
~restclient-mode~ is tremendously useful for testing REST APIs. My workflow is to open an ~org-mode~ buffer, create a restclient source block and hack away. ~restclient-mode~ and ~company-restclient~ power this arcane wizardry.
|
~restclient-mode~ is tremendously useful for automated or quick testing REST
|
||||||
|
APIs. My workflow is to open an ~org-mode~ buffer, create a restclient source
|
||||||
|
block and hack away. ~restclient-mode~ and ~company-restclient~ power this
|
||||||
|
arcane wizardry.
|
||||||
#+end_quote
|
#+end_quote
|
||||||
|
|
||||||
* Table of Contents :TOC:
|
** Maintainers
|
||||||
- [[#install][Install]]
|
This module has no dedicated maintainers.
|
||||||
- [[#example][Example]]
|
|
||||||
|
|
||||||
* Install
|
** Module Flags
|
||||||
No additional setup required.
|
This module provides no flags.
|
||||||
|
|
||||||
* Example
|
** Plugins
|
||||||
#+BEGIN_SRC restclient
|
+ [[https://github.com/pashky/restclient.el][restclient]]
|
||||||
GET https://jsonplaceholder.typicode.com/posts/1
|
+ =:completion company=
|
||||||
#+END_SRC
|
+ [[https://github.com/iquiw/company-restclient][company-restclient]]
|
||||||
|
|
||||||
#+BEGIN_EXAMPLE
|
** Hacks
|
||||||
#+RESULTS:
|
+ restclient has been modified not to silently reject self-signed or invalid
|
||||||
#+BEGIN_SRC js
|
certificates.
|
||||||
{
|
+ Adds imenu support to ~restclient-mode~.
|
||||||
"userId": 1,
|
|
||||||
"id": 1,
|
* Prerequisites
|
||||||
"title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
|
This module has no prereqisites.
|
||||||
"body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
|
|
||||||
}
|
* Features
|
||||||
// GET https://jsonplaceholder.typicode.com/posts/1
|
# An in-depth list of features, how to use them, and their dependencies.
|
||||||
// HTTP/1.1 200 OK
|
|
||||||
// Date: Thu, 25 May 2017 13:43:42 GMT
|
* Configuration
|
||||||
// Content-Type: application/json; charset=utf-8
|
# How to configure this module, including common problems and how to address them.
|
||||||
// Content-Length: 292
|
|
||||||
// Connection: keep-alive
|
* Troubleshooting
|
||||||
// Set-Cookie: __cfduid=d3484257c800700f9882305963fa9d5d91495719822; expires=Fri, 25-May-18 13:43:42 GMT; path=/; domain=.typicode.com; HttpOnly
|
# Common issues and their solution, or places to look for help.
|
||||||
// X-Powered-By: Express
|
|
||||||
// Vary: Origin, Accept-Encoding
|
|
||||||
// Access-Control-Allow-Credentials: true
|
|
||||||
// Cache-Control: public, max-age=14400
|
|
||||||
// Pragma: no-cache
|
|
||||||
// Expires: Thu, 25 May 2017 17:43:42 GMT
|
|
||||||
// X-Content-Type-Options: nosniff
|
|
||||||
// Etag: W/"124-yiKdLzqO5gfBrJFrcdJ8Yq0LGnU"
|
|
||||||
// Via: 1.1 vegur
|
|
||||||
// CF-Cache-Status: HIT
|
|
||||||
// Server: cloudflare-nginx
|
|
||||||
// CF-RAY: 3648ecd7ef833d0d-CPH
|
|
||||||
// Request duration: 0.347179s
|
|
||||||
#+END_SRC
|
|
||||||
#+END_EXAMPLE
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue