Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Created April 15, 2016 19:34
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 guitarrapc/6fdb8f069946a2020c3d39954bfe40ef to your computer and use it in GitHub Desktop.
Save guitarrapc/6fdb8f069946a2020c3d39954bfe40ef to your computer and use it in GitHub Desktop.
$uri = "https://<FunctionAppName>.azurewebsites.net/api/<FunctionName>?code=<Functionごとに一意な文字列>";
$body = @{key = "value"} | ConvertTo-Json -Compress
Invoke-RestMethod -Method Post -UseBasicParsing -Uri $uri -Body $body -ContentType "application/json";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment