Dropbox api:如何保存访问令牌以供以后重用?
我正在使用 Dropbox API 开发一个应用程序,我想让用户在线浏览我的文件。
现在,我需要保存我的访问令牌并重新使用,以便用户在线浏览我的 Dropbox 文件。
I'm developing an application using Dropbox API and I want to let users browsing my files online.
Now, I need to save my access token and reuse to let users browser my Dropbox files online.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题有点模糊,我不太了解 Dropbox,但我想存储访问令牌的一种方法是创建一个 config/initializers/dropbox.rb 文件并存储token 作为常量:
现在您可以通过调用此常量在应用程序中的任何位置使用令牌。
Your question is a bit blurry, and I don't know Dropbox well, but I imagine that one way to store your access token would be to create a
config/initializers/dropbox.rb
file and store the token as a constant :Now you can use the token from anywhere you want in your app by calling this constant.