如何在不推送到实时生产服务器的情况下测试 Youtube API?
由于 Youtube API 要求您在网络服务器上而不是本地运行文件 (http: //code.google.com/apis/youtube/js_api_reference.html#GettingStarted)如何在不将 API 推送到实时生产服务器的情况下测试该 API?
我正在使用 Heroku 上托管的 Ruby on Rails。
Since the Youtube API requires that you run your files on a webserver rather than locally (http://code.google.com/apis/youtube/js_api_reference.html#GettingStarted) how can you test the API without pushing it to your live production server?
I'm using Ruby on Rails hosted on Heroku.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这听起来不像需要转到生产服务器。我不熟悉 Flash,但
http://localhost/test.html
(而不是file://test.html
)可能有效。即使没有,任何旧的测试服务器都可以。That does not sound like it needs to go to a production server. I am not familiar with Flash, but
http://localhost/test.html
(as opposed tofile://test.html
) probably works. And even if not, any old test server will do.