如何使用drupal中的web服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用drupal中的web服务相关的知识,希望对你有一定的参考价值。
$user = 'webservice'; #username (host site). $password = 'webservice'; #pass (host site). $xmlrpc_url = 'http://localhost/services.sandbox/services/xmlrpc'; #url to find the web services $session_id = xmlrpc($xmlrpc_url, 'system.connect'); $authenticated_session = xmlrpc($xmlrpc_url, 'user.login', $session_id['sessid'], $user, $password); $xmlrpc_result = xmlrpc($xmlrpc_url, 'node.get', $authenticated_session['sessid'], 1); if ($xmlrpc_result === FALSE) { } else { }
以上是关于如何使用drupal中的web服务的主要内容,如果未能解决你的问题,请参考以下文章