Questions tagged [heroku-api]

The platform API empowers developers to automate, extend and combine Heroku with other services

The platform API empowers developers to automate, extend and combine Heroku with other services. You can use the platform API to programmatically create apps, provision add-ons and perform other tasks that could previously only be accomplished with Heroku toolbelt or dashboard.

Platform API Reference :https://devcenter.heroku.com/articles/platform-api-reference

Platform website: https://devcenter.heroku.com/categories/platform-api

Discussion Forum: https://discussion.heroku.com/category/api

153 questions
1
vote
1 answer

heroku push rejected, failed to compile Node.js app

I keep getting node-pre-gyp and gyp errors when I try to deploy my Node.js application to Heroku: $ git push -f heroku master Enumerating objects: 48, done. Counting objects: 100% (48/48), done. Delta compression using up to 4 threads Compressing…
tommy waltion
  • 23
  • 1
  • 7
1
vote
1 answer

How to fix issue in Heroku '[heroku-exec] ERROR: Could not connect to proxy! Waiting 20 seconds before retry...'?

Heroku after Scheduling in the SpringBoot app throw the following exceptions: [heroku-exec] ERROR: Could not connect to proxy! Waiting 10 seconds before retry... [heroku-exec] ERROR: Could not connect to proxy! Waiting 20 seconds before…
mavs
  • 13
  • 2
1
vote
1 answer

How to connect Heroku API(server/node-express) to custom domain gh-pages

I am hosting custom domain website(react/webpack) on gh-pages and connect to server (node-express) on Heroku. How can I connect to Heroku server ? I am getting a server connection error for sendmailer which works fine on localhost. Failed to load…
Jiaah
  • 758
  • 2
  • 11
  • 29
1
vote
0 answers

Store in a docker package a builded/cmake result of libraries and dependencies and then add it to an existing Heroku app?

Our application is running on Heroku. It deals with a lot of assets stored on S3 and I'm trying to add the possibility to transform GLTFs into USDZs. Long story short, to generate a USDZ you need to build some binaries from…
Daniel Costa
  • 275
  • 2
  • 14
1
vote
1 answer

heroku support for Adobe experience management

We are planning to use Heroku for one of our client who has mobile (Android and IOS) and desktop apps built on Adobe Experience Management. Can someone please let me know if it is possible? if yes, is there any documentation, solution approach…
pravin
  • 11
  • 1
1
vote
1 answer

inherit heroku addon configuration for review apps

My team has recently started using review apps. However, before tests can be run on a review app, we need to manually change the configuration of an addon. This manual step breaks our test workflow. Is there any way to transfer addon configuration…
1
vote
1 answer

config:push is not a heroku command. Perhaps you meant config. How to solve?

When I am typing : heroku config:push I am getting error as config:push is not a heroku command. ▸ Perhaps you meant config ▸ Run heroku help config for a list of available ▸ topics. What should I do ?
Atif Imam
  • 49
  • 1
  • 9
1
vote
1 answer

Heroku deployment not working properly

I am new here and as well in heroku. I have one Ruby on rails application and i am trying to deploy on heroku. While deploying on heroku it gives me error. I have tried many things but no get solution. Anyone can please help me out. Sorry if it is…
sam
  • 372
  • 2
  • 12
1
vote
1 answer

Heroku API: capture output of a command run on a one-off dyno

How do I capture the output of a command being run on a one-off dyno via the API? For example: heroku = PlatformAPI.connect("...") heroku.dyno.create( app_name, attach: false, command: "ls" ) This just returns the dyno creation response. It…
Akshay Rawat
  • 4,714
  • 5
  • 40
  • 65
1
vote
0 answers

After i pushed to heroku with "git push heroku" i get this error

An error occurred in the application and your page could not be served. If you are the application owner, check your logs for details. and these logs messages 2017-06-20T13:46:11.664248+00:00 app[web.1]: npm ERR! argv "/app/.heroku/node/bin/node"…
Muzi Jack
  • 788
  • 1
  • 7
  • 20
1
vote
1 answer

mailgun/parse-server(heroku) not working

Having two iOS apps (let us name them appA and appB) both using parse-server hosted on heroku and mailgun, I am facing the problem describe hereafter. Let me first say that the two apps are unrelated except for the fact they both have user accounts…
Michel
  • 10,303
  • 17
  • 82
  • 179
1
vote
1 answer

How to access Parse Dashboard on Heroku

I am trying to setup parse for a personal hobby project - I have decided to have it deployed on Heroku. I followed the steps on this readme : https://github.com/ParsePlatform/parse-server-example I clicked on the DEPLOY to HEROKU button. Everything…
sudhishkr
  • 3,318
  • 5
  • 33
  • 55
1
vote
1 answer

how to include mail gun API in rails?

I want to use Mailgun in my Rails application. When I include through Heroku addon it display error to add credit card number though I wanted the free version. I looked up and found this code from Mailgun. Could someone tell me how to use…
Debasish
  • 173
  • 2
  • 3
  • 14
1
vote
1 answer

How to use PFQuery getObjectWithId?

Working with PFObject and PFQuery I am having trouble debugging this piece of code: ....... if let someContents = object.valueForKey("contents") { let query = PFQuery(className: "TheContentList") do {let object = try…
Michel
  • 10,303
  • 17
  • 82
  • 179
1
vote
1 answer

Equivalent rest API call for: "heroku pg:credentials DATABASE_URL --app mypgapp"

curl -n -X GET https://api.heroku.com/apps/mypgapp/addons/heroku-postgresql -H "Content-Type: application/json" -H "Accept: application/vnd.heroku+json; version=3" Returns a JSON with reelevant PG add-on information, but does not provide the…
panchicore
  • 11,451
  • 12
  • 74
  • 100