使用 Java 程序的 PHP 访问 Dropbox
我有一些在命令行上工作的 java 代码,需要将它们与基于 PHP 的网站集成。用户不需要将文件上传到该站点,而是需要授予对 dropbox 的访问权限,以便 java 代码可以读取存储在其中的文件。是否可以在 php 中执行oauth部分,然后提供java代码来访问目录中的所有文件(使用 java sdk)?我可能会使用 php system()
来调用 java 代码。
抱歉,如果这听起来很模糊......试图简短,但我可以通过惊人的阐述来得到答案:)
I have some java code that work on the command line, and need to integrate them with a PHP based site. Instead of uploading the files to this site, users need to give access to dropbox so that the java code can read the files stored in there. Is it possible to do the oauth part in php and then give the java code to access to all the files in the directory (using java sdk)? I'll probably use php system()
to invoke the java code.
Sorry if this sounds vague ... trying to be short, but I can go to amazing levels of elaboration to get an answer :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将使用 PHP 站点进行 OAuth 舞蹈,以使您的应用程序通过用户身份验证。然后,java 程序可以使用返回的访问令牌来访问数据。您将需要一些 PHP 可以写入(以存储访问令牌)并且 java 程序可以从中读取(以检索访问令牌)的共享数据存储。
You would use the PHP site to do the OAuth dance to get your application authenticated with the user. The access token returned can then be used by the java program to access the data. You would need some shared data storage that the PHP can write to (to store the access token) and the java program can read from (to retrieve the access token).