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
0
votes
0 answers

Parse-Server Cloud function syntax issue

I am having some trouble making a Parse Cloud function work. I hope someone can bring me some help. I started by following some other function I had written before. But it has been a while; and it seems like things have changed. The text of the…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
0 answers

Cloud-Function on iOS/Parse-server, not working

I am starting to make use of a Cloud-Function in an iOS/Parse-server app. Here is the swift code, on the client app: PFCloud.callFunction(inBackground: "myCloudFunction", withParameters: ["unitID": theObject.objectID, …
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
2 answers

Twitter bot with go crashes in Heroku

I've put together this twitter bot and it is very simple. Gathers some data from an external API, works on it and tweets it out. I tried several different ways to have the bot tweet out on the hour and now I have this: func main() { …
tdranv
  • 1,140
  • 11
  • 38
0
votes
1 answer

python- Unable to read table in salesforce using Bulk Api with "pk_chunking" enabled to create multiple batches to retrieve the data faster

while trying to read the accounts table in salesforce by enabling the pk_chunking = True , getting an error as salesforce_bulk.salesforce_bulk.BulkBatchFailed: Batch 7511M00000KiqGsQAJ of job None failed: None I looked at the salesforce…
Kumar
  • 13
  • 3
0
votes
1 answer

In Heroku; how to transfer 2 apps from Team to Personal?

I do not want to be charged, reason why I want to switch my project from team to personal. This is what I am doing right now: 1) I created a new app called radix-haven-corp (This is app is under my personal account) 2) These are my actual apps,…
Manfred Tijerino
  • 377
  • 1
  • 3
  • 12
0
votes
1 answer

Heroku Build api issue

I am using the Heroku Build API as documented here. In the source blob, I am providing the git url for the repository "source_blob": { "url": "https://github.com/heroku/node-js-getting-started/archive/master.zip" } I am constantly seeing below…
RSharma
  • 120
  • 7
0
votes
1 answer

Having node API + Heroku deploying issues

I have written Node API and I have uploaded in Heroku but when I want to open any other router then It shows me some error like application error. Even I got to add Procfile but there was issue Application error below I've seen "heroku logs --tail"…
Kiran Reddy
  • 347
  • 1
  • 4
  • 14
0
votes
1 answer

Company Domain assign Heroku IP

I have a node.js application in Heroku, and I need to use company domain Name. MIS told me to get the Static IP from Heroku, but I search some documents, there is no way to get Static IP from Heroku. Is there any way that I can use Heroku service…
lin
  • 211
  • 2
  • 3
  • 14
0
votes
3 answers

passing arguments to API created by flask in python

I am a complete newbie to API and python. actually, after getting disappointed to find a free host supporting plumber in R I decided to try it by python. The simple problem is that I have a simple function which takes two numeric arguments and using…
mjoudy
  • 149
  • 1
  • 1
  • 10
0
votes
1 answer

Heroku view files changed by client

I made a simple Node.js server and deployed it to Heroku that serves a dead simple HTML form that returns submitted value to fs.writeFile('./users.json',JSON.stringify(dataArr,null,4),(err)=>{ if(err){console.log(err);} console.log('file…
Glitch Fish
  • 41
  • 1
  • 13
0
votes
1 answer

Springboot application with nginx as proxy deploy on Heroku

I am trying to deploy Spring boot application with nginx as proxy on Heroku. I am able to deploy the application without any issue without nginx in the front but when I try to add nginx using https://github.com/heroku/heroku-buildpack-nginx build…
user3314492
  • 233
  • 5
  • 17
0
votes
1 answer

How do I deploy node app to heroku without using Express

I deployed my node.js app successfully to heroku however when I accessed the site there was an error saying "Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch" my code is var router =…
Joji
  • 4,703
  • 7
  • 41
  • 86
0
votes
2 answers

Einstein for Heroku

I am wondering if we have Einstein (Salesforce) available for Heroku, I could only see Einstein Vision as an ADD ON available. We will have a great amount of data stored on heroku and would like to utilize Einstein for running various recomendation…
0
votes
1 answer

Retrieve Heroku logs programmatically

I want to be able to access the Heroku-provided logs for my Node.js app online. Is there a way to add this into my app, or to use some REST API with AJAX for this? If so, how?
Oak
  • 5
  • 3
0
votes
1 answer

Django settings.py import error in mange.py Configuration error

Thanks in Advance for My Query. I have created a django project which has manage.py file inside src folder it works fine when running terminal from SRC folder. FOr Heroku deployement manage.py should be placed in root directory so i updated…