Skip to content

Instantly share code, notes, and snippets.

@hakatashi
Created January 28, 2018 11:48
Show Gist options
  • Save hakatashi/f32b62a7585fe97528ca95c8fdf23853 to your computer and use it in GitHub Desktop.
Save hakatashi/f32b62a7585fe97528ca95c8fdf23853 to your computer and use it in GitHub Desktop.
POST anonymous gist
fetch('https://api.github.com/gists', {mode: 'cors', method: 'POST', body: JSON.stringify({description: 'hoge', public: false, files: {'test.txt': {content: 'test'}}})}).then((res) => res.json()).then((data) => console.log(data));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment