Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
heroku-cli-api
Advanced tools
$ heroku plugins:install heroku-cli-api
$ heroku api [--version VERSION] METHOD PATH
The api command is a convenient but low-level way to send requests to the Heroku API. It sends an HTTP request to the Heroku API using the given method on the given path. For methods PUT, PATCH, and POST, it uses stdin unmodified as the request body. It prints the response unmodified on stdout.
Method name input will be upcased, so both 'heroku api GET /apps' and 'heroku api get /apps' are valid commands.
Examples:
$ heroku api GET /apps/myapp
{ created_at: "2011-11-11T04:17:13-00:00",
id: "12345678-9abc-def0-1234-456789012345",
name: "myapp",
…
}
$ heroku api -v 3.variant /apps
# Something different
$ export HEROKU_HEADERS
$ HEROKU_HEADERS='
Content-Type: application/x-www-form-urlencoded
Accept: application/json
'
$ printf 'type=web&qty=2' | heroku api POST /apps/myapp/ps/scale
2
FAQs
access the Heroku API directly
The npm package heroku-cli-api receives a total of 0 weekly downloads. As such, heroku-cli-api popularity was classified as not popular.
We found that heroku-cli-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.