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
n8http://ods.openlinksw.com/dataspace/person/dav#
dctermshttp://purl.org/dc/terms/
n7http://demo.openlinksw.com/ods/oauth_test.
n13http://ods.openlinksw.com/dataspace/owiki/wiki/
n14http://oauth.net/core/1.0/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
oplhttp://www.openlinksw.com/schema/attribution#
n4http://virtuoso.openlinksw.com/wiki/main/Main/
n24http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleFeeds/o1.
n15http://ods.openlinksw.com/dataspace/owiki#
dchttp://purl.org/dc/elements/1.1/
rdfshttp://www.w3.org/2000/01/rdf-schema#
n5http://rdfs.org/sioc/services#
n21http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleFeeds/of4.
n2http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/
n23http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleFeeds/of2.
siocthttp://rdfs.org/sioc/types#
n11http://ods.openlinksw.com/dataspace/person/owiki#
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n28http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/VirtOAuthTestToolExampleFeeds/sioc.
n16http://demo.openlinksw.com/
n6http://ods.openlinksw.com/dataspace/services/wiki/
xsdhhttp://www.w3.org/2001/XMLSchema#
n26http://demo.openlinksw.com/ods/
n20http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleFeeds/of3.
n12http://ods.openlinksw.com/dataspace/dav#
n22http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExampleFeeds/of1.
siochttp://rdfs.org/sioc/ns#
Subject Item
n8:this
foaf:made
n2:VirtOAuthTestToolExampleFeeds
Subject Item
n6:item
n5:services_of
n2:VirtOAuthTestToolExampleFeeds
Subject Item
n15:this
sioc:creator_of
n2:VirtOAuthTestToolExampleFeeds
Subject Item
n13:ODS
sioc:container_of
n2:VirtOAuthTestToolExampleFeeds
atom:entry
n2:VirtOAuthTestToolExampleFeeds
atom:contains
n2:VirtOAuthTestToolExampleFeeds
Subject Item
n12:this
sioc:creator_of
n2:VirtOAuthTestToolExampleFeeds
Subject Item
n2:VirtOAuthTestToolExampleFeeds
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T06:09:33.349069
dcterms:modified
2017-06-29T07:32:42.330537
rdfs:label
VirtOAuthTestToolExampleFeeds
foaf:maker
n11:this n8:this
dc:title
VirtOAuthTestToolExampleFeeds
opl:isDescribedUsing
n28:rdf
sioc:has_creator
n15:this n12:this
sioc:attachment
n20:png n21:png n22:png n23:png n24:png
sioc:content
---+Feed Manager OAuth REST API Example performed with the Virtuoso OAuth Testing Tool The following example demonstrates subscribing to feed and getting feed channel info by the ODS REST APIs *feeds.subscribe* and *feeds.get* using the OAuth Test Tool. Full list of the ODS REST APIs for ODS Feed Manager you can find [[VirtuosoOdsControllersFeeds][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 Feed Manager instance or create such in not existing. For ex.: 6144bf4218f5f3950cdae53b2d33e6348486129b 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*: 6144bf4218f5f3950cdae53b2d33e6348486129b 1. *API method*: feeds.subscribe 1. *API parameters*: <verbatim> inst_id=47&uri=http://www.openlinksw.com/blog/~kidehen/gems/rss.xml </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=DemoFeeds" 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>47</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 DemoFeeds </verbatim> 1. Select for *Query options*: "Generate URI and Submit". * <img src="%ATTACHURLPATH%/of1.png" style="wikiautogen"/> 1. Click the "Execute" button. 1. Enter the password for user demo and click the "Login" button. 1. In the shown authorization form click the "Authorize" button. * <img src="%ATTACHURLPATH%/of2.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 feed subscription will be: 133 * <img src="%ATTACHURLPATH%/of3.png" style="wikiautogen"/> 1. Now lets get the data for the created subscription. In the form enter: 1. *API method*: feed.get 1. *API parameters*: feed_id=133 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 subscription with the given above id. * <img src="%ATTACHURLPATH%/of4.png" style="wikiautogen"/> ---++Related * [[VirtuosoOdsControllersFeeds][Feed Manager REST Controllers]] * [[VirtOAuthTestTool][OAuth Test Tool for ODS Controllers]] - Examples: * [[VirtOAuthTestToolExampleBriefcase][ODS Briefcase]] * [[VirtOAuthTestToolExampleWeblog][ODS Weblog]] * [[VirtOAuthTestToolExampleAddressbook][ODS Addressbook]] * [[VirtOAuthTestToolExampleBookmarks][ODS Bookmarks]] * [[VirtOAuthTestToolExamplePolls][ODS Polls]] * [[VirtOAuthTestToolExampleCalendar][ODS Calendar]] * [[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]] CategoryFeedManager CategoryODS
sioc:id
5274978aa060df2b193cbb3c63c9e9e9
sioc:link
n2:VirtOAuthTestToolExampleFeeds
sioc:has_container
n13:ODS
n5:has_services
n6:item
atom:title
VirtOAuthTestToolExampleFeeds
sioc:links_to
n2:VirtuosoOdsUbiquityTutorials n4:VirtuosoOAuthServer n7:vsp n4:VirtOAuth n2:VirtuosoOdsUbiquityTutorialsOAuth n2:VirtOAuthTestToolExampleAddressbook n14: n16:ods n2:CategoryFeedManager n2:VirtuosoOdsControllersFeeds n2:VirtOAuthExamples n2:VirtOAuthControllers n2:VirtOAuthTestTool n26:api n2:VirtOAuthTestToolExampleBookmarks n4:VirtOAuthSPARQL n2:CategoryODS n2:VirtOAuthTestToolExampleBriefcase n2:VirtOAuthTestToolExampleCalendar n4:OAuth
atom:source
n13:ODS
atom:author
n8:this
atom:published
2017-06-13T06:09:33Z
atom:updated
2017-06-29T07:32:42Z
sioc:topic
n13:ODS
Subject Item
n2:VirtOAuthTestToolExamplePolls
sioc:links_to
n2:VirtOAuthTestToolExampleFeeds
Subject Item
n2:VirtOAuthTestToolExampleWeblog
sioc:links_to
n2:VirtOAuthTestToolExampleFeeds