This HTML5 document contains 56 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
n21http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/VirtOAuthTestToolExampleWeblog/sioc.
n14http://ods.openlinksw.com/dataspace/person/dav#
dctermshttp://purl.org/dc/terms/
n12http://demo.openlinksw.com/ods/oauth_test.
n5http://ods.openlinksw.com/dataspace/owiki/wiki/
atomhttp://atomowl.org/ontologies/atomrdf#
n4http://oauth.net/core/1.0/
foafhttp://xmlns.com/foaf/0.1/
oplhttp://www.openlinksw.com/schema/attribution#
n10http://virtuoso.openlinksw.com/wiki/main/Main/
n11http://ods.openlinksw.com/dataspace/owiki#
dchttp://purl.org/dc/elements/1.1/
rdfshttp://www.w3.org/2000/01/rdf-schema#
n8http://rdfs.org/sioc/services#
n2http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/
siocthttp://rdfs.org/sioc/types#
n28http://ods.openlinksw.com/dataspace/person/owiki#
n19http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleWeblog/o1.
n24http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleWeblog/ow4.
n23http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleWeblog/ow3.
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n22http://demo.openlinksw.com/
n9http://ods.openlinksw.com/dataspace/services/wiki/
n18http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleWeblog/ow2.
n17http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleWeblog/ow1.
xsdhhttp://www.w3.org/2001/XMLSchema#
n7http://demo.openlinksw.com/ods/
n16http://ods.openlinksw.com/dataspace/dav#
siochttp://rdfs.org/sioc/ns#
Subject Item
n14:this
foaf:made
n2:VirtOAuthTestToolExampleWeblog
Subject Item
n9:item
n8:services_of
n2:VirtOAuthTestToolExampleWeblog
Subject Item
n11:this
sioc:creator_of
n2:VirtOAuthTestToolExampleWeblog
Subject Item
n5:ODS
sioc:container_of
n2:VirtOAuthTestToolExampleWeblog
atom:entry
n2:VirtOAuthTestToolExampleWeblog
atom:contains
n2:VirtOAuthTestToolExampleWeblog
Subject Item
n16:this
sioc:creator_of
n2:VirtOAuthTestToolExampleWeblog
Subject Item
n2:VirtOAuthTestToolExampleWeblog
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T06:02:05.157757
dcterms:modified
2017-06-29T07:32:43.881391
rdfs:label
VirtOAuthTestToolExampleWeblog
foaf:maker
n14:this n28:this
dc:title
VirtOAuthTestToolExampleWeblog
opl:isDescribedUsing
n21:rdf
sioc:has_creator
n16:this n11:this
sioc:attachment
n17:png n18:png n19:png n23:png n24:png
sioc:content
---+Weblog OAuth REST API Example performed with the Virtuoso OAuth Testing Tool The following example demonstrates creating and getting contact info by the ODS REST APIs *weblog.post.new* and *weblog.post.get* using the OAuth Test Tool. Full list of the ODS REST APIs for ODS Weblog you can find [[VirtuosoOdsControllersWeblog][here]]. 1. Go to http://demo.openlinksw.com/ods 1. Log in as user demo with password demo 1. Go to Settings->OAuth Keys * <img src="%ATTACHURLPATH%/o1.png" style="wikiautogen"/> 1. Copy the Token value for an Weblog instance or create such in not existing. For ex.: 150fd483a3219e09847676deebae6c725d5a0a03 1. Go to http://demo.openlinksw.com/ods/oauth_test.vsp 1. In the shown form enter for: 1. *Server*: http://demo.openlinksw.com/ods/api 1. *Consumer Key*: 150fd483a3219e09847676deebae6c725d5a0a03 1. *API method*: weblog.post.new 1. *API parameters*: <verbatim> inst_id=44&description=my test&title=my first post </verbatim> * An easy way to get the instance id is using the [[VirtuosoOdsControllers][ODS Framework Controller]] <b>instance.get.id</b>: <verbatim> $ curl -i "http://demo.openlinksw.com/ods/api/instance.get.id?user_name=demo&password_hash=4627dhe23cb53f522eag32e09gs7fceaw2c523449bdfdf&instanceName=demo's%20Weblog" HTTP/1.1 200 OK Server: Virtuoso/06.03.3131 (Linux) x86_64-generic-linux-glibc25-64 VDB Connection: Keep-Alive Date: Sun, 05 Feb 2012 21:01:20 GMT Accept-Ranges: bytes Content-Type: text/xml; charset="UTF-8" Content-Length: 58 <result> <code>44</code> <message>Success</message> </result> </verbatim> * You can also get the instance id using the [[VirtuosoOdsUbiquity][ODS Ubiquity commands]] sequence: <verbatim> ods-host http://demo.openlinksw.com/ods ods-set-mode sid ods-authenticate-user demo password demo ods-get-instance-id demo's Weblog </verbatim> 1. Select for *Query options*: "Generate URI and Submit". * <img src="%ATTACHURLPATH%/ow1.png" style="wikiautogen"/> 1. Click the "Execute" button. 1. In the shown authorization form click the "Authorize" button. * <img src="%ATTACHURLPATH%/ow2.png" style="wikiautogen"/> 1. As result will be shown the generated URI and the output message of executing the ODS REST API. In our case, the id of the new created post will be: 37 * <img src="%ATTACHURLPATH%/ow3.png" style="wikiautogen"/> 1. Now lets get the data for the created post. In the form enter: 1. *API method*: weblog.get 1. *API parameters*: post_id=37 1. Select for *Query options*: "Generate URI and Submit". 1. Click the "Execute" button. 1. As result in the "Response Body" text-area will be shown the retrieved details for the posts with the given above id. * <img src="%ATTACHURLPATH%/ow4.png" style="wikiautogen"/> ---++Related * [[VirtuosoOdsControllersWeblog][Weblog REST Controllers]] * [[VirtOAuthTestTool][OAuth Test Tool for ODS Controllers]] - Examples: * [[VirtOAuthTestToolExampleBriefcase][ODS Briefcase]] * [[VirtOAuthTestToolExampleAddressbook][ODS Addressbook]] * [[VirtOAuthTestToolExampleBookmarks][ODS Bookmarks]] * [[VirtOAuthTestToolExamplePolls][ODS Polls]] * [[VirtOAuthTestToolExampleCalendar][ODS Calendar]] * [[VirtOAuthTestToolExampleFeeds][ODS Feed Manager]] * [[http://virtuoso.openlinksw.com/wiki/main/Main/OAuth][OpenLink's explanation of OAuth]] * [[http://virtuoso.openlinksw.com/wiki/main/Main/VirtuosoOAuthServer][Virtuoso OAuth server]] * [[VirtOAuthControllers][Using OAuth with ODS]] * [[VirtuosoOdsUbiquity][ODS Ubiquity Commands]] * [[http://virtuoso.openlinksw.com/wiki/main/Main/VirtOAuth][Virtuoso OAuth Implementation]] * [[VirtuosoOdsControllers][ODS Controllers]] * [[VirtODSOAuthQA][Testing Virtuoso OAuth with 3rd Party OAuth Clients]] * [[VirtuosoOdsUbiquityTutorialsOAuth][OAuth Ubiquity Tutorial]] * [[http://virtuoso.openlinksw.com/wiki/main/Main/VirtOAuthSPARQL][Virtuoso SPARQL OAuth Tutorial]] * [[VirtuosoOdsUbiquityTutorials][ODS Ubiquity Tutorials]] * [[VirtOAuthExamples][OAuth Applications Authentication examples]] * [[http://oauth.net/core/1.0/][OAuth API]] CategoryBlog CategoryODS
sioc:id
c8779d88a330573a085a50b197f267f2
sioc:link
n2:VirtOAuthTestToolExampleWeblog
sioc:has_container
n5:ODS
n8:has_services
n9:item
atom:title
VirtOAuthTestToolExampleWeblog
sioc:links_to
n4: n7:api n10:VirtOAuthSPARQL n2:CategoryODS n12:vsp n10:OAuth n10:VirtuosoOAuthServer n2:VirtuosoOdsUbiquityTutorials n10:VirtOAuth n2:VirtuosoOdsUbiquityTutorialsOAuth n2:VirtOAuthExamples n2:VirtOAuthTestToolExampleBookmarks n2:VirtOAuthControllers n2:VirtOAuthTestToolExampleBriefcase n2:VirtuosoOdsControllersWeblog n2:VirtOAuthTestTool n2:CategoryBlog n22:ods n2:VirtOAuthTestToolExampleCalendar n2:VirtOAuthTestToolExampleFeeds n2:VirtOAuthTestToolExamplePolls n2:VirtOAuthTestToolExampleAddressbook
atom:source
n5:ODS
atom:author
n14:this
atom:published
2017-06-13T06:02:05Z
atom:updated
2017-06-29T07:32:43Z
sioc:topic
n5:ODS