如何从 Android 使用 xmlrpc 连接到 drupal 站点?

发布于 2024-10-29 12:46:11 字数 81 浏览 3 评论 0原文

一开始,我想在 Drupal 站点上获得授权,但我无法与“system.connect”连接,因此我收到 null。我怎样才能做到这一点?提前致谢。

In the beginning I want to become authorised on a Drupal site, but I cannot connect with "system.connect", as a result I receive null. How can I do that? Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

红ご颜醉 2024-11-05 12:46:11

据我所知,到目前为止,您需要首先在项目中拥有 xmlrpc 方法库,然后您可以使用 xml rpc 方法连接到 drupal 站点调用方法并添加参数

From all what i know till now you need to have xmlrpc method library first in your project and then you can use xml rpc methods to connect to drupal site call methods and add paramteres

醉酒的小男人 2024-11-05 12:46:11

您可能想要使用服务,它默认支持 xmlrpc,而 使用 drupal 作为后端或服务来制作移动应用程序的步骤主要处理 REST,设置实际上是相同的。您可以从那里更改 JSON 代码以使用 Apache XMLRPC android 库。

You will probably want to use services, it supports xmlrpc by default while Steps to make a mobile application using drupal as a back end or service deals with REST mainly the setup is virtually the same. You can change the JSON code from there to use the Apache XMLRPC android library.

又爬满兰若 2024-11-05 12:46:11

下面的文字与xmlrpc相关。

您需要定义您的端点。设置名称、协议 (xmlrpc)、允许的资源(节点、用户、注释、文件等)。
并启用“会话授权”复选框。如果没有它,所有远程请求都将以匿名用户身份执行。

要授权,您可以使用用户名和密码参数调用“user.login”方法。
如果调用成功,则存储返回的方法结构体的sessid和session_name值。

然后

session_name+"="+sessid

在所有后续调用中将值作为 cookie 发送以识别会话。

The text below is related to xmlrpc.

You need to define your endpoint. Setup name, protocol (xmlrpc), allowed resources (nodes, users, comments, files, etc).
And enable "Session authorization" checkbox. Without it, all remote requests will be executed as anonymous user.

To authorize, you call "user.login" method with username and password arguments.
And if call is succeeded, store sessid and session_name values of returned method structure.

Then send value

session_name+"="+sessid

as cookie in all subsequent calls to identify the session.

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