Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created January 28, 2020 18:42
Show Gist options
  • Select an option

  • Save r3dm1ke/e76da0bf65fcf601e403c27ec5da19cb to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/e76da0bf65fcf601e403c27ec5da19cb to your computer and use it in GitHub Desktop.
const client = ClientBuilder()
.forBaseUrl('https://some-api.com/api/')
.withHeaders({Authorization: 'Bearer ABACABA'})
.usingAxios()
.build();
client.post('UpdateData', {data: 'new data'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment