如何在android应用程序中生成Dropbox的API_KEY和API_SECRET
我正在使用 Dropbox SDK 将 Dropbox 实现到 Android 应用程序,我完成了静默登录、文件正在上传..我是在四个参数用户名、密码、api 密钥和 api 秘密的帮助下完成这些操作的。现在我想在不插入 api 密钥和 api 秘密的情况下执行此操作,这意味着我想在我的 android 应用程序中生成 api 密钥和 api 秘密。
我为此尝试了很多,但找不到任何帮助。 是否有可能动态生成 API_KEY 和 API_SECRET?
提前致谢。
I am using Dropbox SDK for implementing Dropbox to the android application, I done the silent login, file uploading.. I am doing these with the help of four parameters Username, password, api key and api secret. Now I want to perform this without inserting api key and api secret, means i want to generate api key and api secret in my android application.
I tried a lot for this, but cannot find any help.
Is there any possibility to generate API_KEY and API_SECRET dynamically?
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从这些变量的名称来看,您似乎无法自己生成它们。他们的目的是让 Dropbox 的人控制谁可以使用他们的 API:他们为每个用户制作一个密钥,如果用户不听话就撤销它,或者如果你付给他们更多的钱,就让你使用更多/更快。将其视为登录的另一层,您就会明白为什么您自己生成它们没有意义。
编辑:我会说得更清楚。不,你不能。
From the names of those variables, it looks like you will not be able to generate them yourself. Their purpose is for the Dropbox guys to control who can use their API: they make a key for each user, revoke it if the user's being naughty, or let you use more/faster if you pay them more. Think of it as another layer of login, and you'll see why it doesn't make sense for you to generate them yourself.
Edit: I'll make it clearer. No, you can't.