使用xmlrpc c#将映像添加到drupal 7节点中

本文关键字:drupal 节点 添加 xmlrpc 映像 使用 | 更新日期: 2023-09-27 18:20:23

我正在尝试将图像添加到节点中。我在网上搜索了一下,但没有找到多少。我想我需要先上传图像,然后将其添加到节点中,这就是为什么我写了一些代码将图像添加到文件夹(sites/all/default)中,但没有成功。我在XmlRpcClientProtocol.cs中遇到一些错误-"无法将文件写入目标"。

使用了file.create方法。

     XmlRpcStruct file = new XmlRpcStruct();
        file.Add("file", encodedData);
        file.Add("filename", filename);
        file.Add("filepath", "sites/default/files/" + filename);
        file.Add("filesize", filestream.Length);
        file.Add("timestamp", DateTime.Now.ToShortTimeString());
     drupal.FileSave(file);

有什么建议吗?

使用xmlrpc c#将映像添加到drupal 7节点中

在Python中:

with open(filepath + name_, 'rb') as f:
    img = base64.b64encode(f.read())
    size = os.path.getsize(filepath + name_)
    file = {'methodCall': 
             {'params': 
               {'param': 
                 {'struct': 
                   {'member': [
                     {'name': 'filesize', 'value':{'string': str(size)}}, 
                     {'name': 'filename', 'value':{'string': str(filepath + name_)}},
                     {'name': 'file', 'value':{'string': str(img)}}, 
                     {'name': 'filepath', 'value':{'string': 'public://product_image/'+str(name_)}}, 
                     ]
                   }
                 }
               }, 
               'methodName': 'file.create'
             }
           }   
    xml = dict2xml.dict2xml(file)