使用 Java 程序的 PHP 访问 Dropbox

发布于 2024-11-30 13:34:04 字数 398 浏览 1 评论 0原文

我有一些在命令行上工作的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你是年少的欢喜 2024-12-07 13:34:04

您将使用 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文