I am experimenting with writing to my solid POD, following the example given here : https://github.com/solid/solid-spec/blob/master/examples/user-posts-note.md
I can create , read and update (with PUT) with no problem, but when I try PATCH, here is the error I get:
Patch: Target application/octet-stream file syntax error: Error: Error: Don’t know how to parse application/octet-stream yet while trying to parse https://walteralmeida.inrupt.net/private/myprivatedata/mynotepad/my-test-num1 as application/octet-stream
Any idea what it can be ?
I am using PostMan to test, I set the body of my PATH request to raw :
DELETE DATA {<> http://www.w3.org/ns/activitystreams#content “Going to Social Web WG” .}; INSERT DATA {<> http://www.w3.org/ns/activitystreams#content “Going to Social Web WG in Paris” .}
the content of the resource is :
@prefix as: http://www.w3.org/ns/activitystreams#. _
<> a as:Note; _
_ as:content “Going to Social Web WG”;
_ as:summary “My summary”.
and content type (for the PATCH request) is application/sparql-update
Thank you for help!