当通过 API 添加时,Dspace 中的比特流的 "Name" 是否为空?
"Name" for bitstream in Dspace when added through API is null?
我正在尝试通过 Postman.When I post 向项目添加比特流,我选择主体作为 "form-data" 并添加一个密钥作为 "file" 并选择了一个file.In 除了它之外,我还给了键 "name" 和值作为文件名。它已成功添加到项目中,但名称为空。
我假设你使用的是 DSpace 6。
首先:确保您已登录。通过调用
获取 JSESSIONID cookie
Post: http://yourserver.com/rest/login
与 Query Params
email
和 password
然后:Post这样的比特流
Post: http://yourserver.com/rest/items/your-item-id/bitstreams
在Body
和select下添加文件 binary
:
设置filename
和description
为Query Params
:
点击发送。
我正在尝试通过 Postman.When I post 向项目添加比特流,我选择主体作为 "form-data" 并添加一个密钥作为 "file" 并选择了一个file.In 除了它之外,我还给了键 "name" 和值作为文件名。它已成功添加到项目中,但名称为空。
我假设你使用的是 DSpace 6。
首先:确保您已登录。通过调用
获取 JSESSIONID cookiePost: http://yourserver.com/rest/login
与 Query Params
email
和 password
然后:Post这样的比特流
Post: http://yourserver.com/rest/items/your-item-id/bitstreams
在Body
和select下添加文件 binary
:
设置filename
和description
为Query Params
:
点击发送。