Heroku 集成
我正在尝试 heroku
集成。是否可以登录 heroku
并从 java 或 salesforce apex 运行 heroku 命令。 Heroku REST API 采用 ruby 语言。我无法理解它。如何在不使用 cmd
或 git
的情况下运行 heroku
命令。
I am trying for heroku
integration. Is it possible to login into heroku
and run heroku commands from java or salesforce apex. Heroku REST API is in ruby. I am not able to understand it. How to run heroku
command with out using cmd
or git
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Heroku API 的基于 Java 的heroku.jar 客户端:
https://github.com/heroku/heroku .jar
它仍在开发中,但目前 API 的覆盖范围相当广泛。
Check out the heroku.jar Java based client for the Heroku API:
https://github.com/heroku/heroku.jar
It's still under development, but there is pretty good coverage of the API at this point.
REST API 只是一个 API,所以它的编写内容并不重要。您可能可以从heroku客户端对API进行逆向工程(https://github.com/heroku/heroku )
但是,请记住此 API 发生了变化。
我想这个问题实际上取决于你想要做什么。
The REST API is just an API so what it's written in shouldn't matter. You could probably reverse engineer the API from the heroku client (https://github.com/heroku/heroku)
However, bear in mind this API changes.
I guess the question really depends on what you're trying to do.