Skip to content

Instantly share code, notes, and snippets.

@conanak99
Created July 23, 2016 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conanak99/7d53b9d9d21f9149670dff92d55ccf1a to your computer and use it in GitHub Desktop.
Save conanak99/7d53b9d9d21f9149670dff92d55ccf1a to your computer and use it in GitHub Desktop.
request({
url: this._analyzeApiUrl, // Thay bằng URL của API
headers: {
"Ocp-Apim-Subscription-Key": this._analyzeKey // Thay bằng key của bạn
},
method: "POST",
json: true,
body: {
"url": imageUrl // Thay bằng url của hình ảnh
}
}, (err, response, body) => {
// Lấy kết quả trong body
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment