You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement a .setHeaders() method for WPAPI and WPRequest objects (#315)
* Implement a `.setHeaders()` method for WPAPI and WPRequest objects
In response to #299, #312, and #314, this introduces a new .setHeaders()
prototype method for both WPAPI and WPRequest. `.setHeaders()` allows a
single WPRequest, or all requests generated from a WPAPI site client
instance, to be augmented with one or more custom HTTP headers. Providing
this functionality allows consumers of the wpapi library to utilize
custom authentication schemes (such as JWT) with the Authentication
header, to specify the preferred language of the response endpoints with
the Accept-Language header, and so on. Providing a general-purpose
interface is preferred in place of specifically implementing individual
methods for JWT auth, language preferences, or other specific headers
that a consumer of this library may want to send.
Closes#299, fixes#312, fixes#314
**Usage:**
If you need to send additional HTTP headers along with your request
(for example to provide a specific `Authorization` header for use with
alternative authentication schemes), you can use the `.setHeaders()`
method to specify one or more headers to send with the dispatched request:
```js
// Specify a single header to send with the outgoing request
wp.posts().setHeaders( 'Authorization', 'Bearer xxxxx.yyyyy.zzzzz' )...
// Specify multiple headers to send with the outgoing request
wp.posts().setHeaders({
Authorization: 'Bearer xxxxx.yyyyy.zzzzz',
'Accept-Language': 'pt-BR'
})...
```
You can also set headers on the WPAPI instance itself, which will then
be used for all subsequent requests created from that site instance:
```js
wp.setHeaders( 'Authorization', 'Bearer xxxxx.yyyyy.zzzzz' );
wp.users().me()...
wp.posts().id( unpublishedPostId )...
```
props to @anagio, @andreasvirkus, @gnarf, @Matthewnie, @mnivoliez,
and @mzalewski for the feature request, feedback & discussion
Note that these transport methods are the internal methods used by `create` and `.update`, so the names of these methods therefore map to the HTTP verbs "get", "post", "put", "head" and "delete"; name your transport methods accordingly or they will not be used.
813
+
### Specifying HTTP Headers
814
+
815
+
If you need to send additional HTTP headers along with your request (for example to provide a specific `Authorization` header for use with alternative authentication schemes), you can use the `.setHeaders()` method to specify one or more headers to send with the dispatched request:
816
+
817
+
#### Set headers for a single request
818
+
819
+
```js
820
+
// Specify a single header to send with the outgoing request
0 commit comments