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
n14http://ods.openlinksw.com/dataspace/person/dav#
dctermshttp://purl.org/dc/terms/
n24http://demo.openlinksw.com/ods/oauth_test.
n6http://ods.openlinksw.com/dataspace/owiki/wiki/
n23http://oauth.net/core/1.0/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n21http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExamplePolls/op2.
oplhttp://www.openlinksw.com/schema/attribution#
n22http://virtuoso.openlinksw.com/wiki/main/Main/
n19http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExamplePolls/op4.
n16http://ods.openlinksw.com/dataspace/owiki#
dchttp://purl.org/dc/elements/1.1/
n13http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExamplePolls/o1.
rdfshttp://www.w3.org/2000/01/rdf-schema#
n11http://rdfs.org/sioc/services#
n2http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/
siocthttp://rdfs.org/sioc/types#
n28http://ods.openlinksw.com/dataspace/person/owiki#
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n20http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExamplePolls/op1.
n9http://ods.openlinksw.com/dataspace/owiki/wiki/ODS/VirtOAuthTestToolExamplePolls/sioc.
n17http://ods.openlinksw.com/wiki/main/ODS/VirtOAuthTestToolExamplePolls/op3.
n18http://demo.openlinksw.com/
n10http://ods.openlinksw.com/dataspace/services/wiki/
xsdhhttp://www.w3.org/2001/XMLSchema#
n27http://demo.openlinksw.com/ods/
n4http://ods.openlinksw.com/dataspace/dav#
siochttp://rdfs.org/sioc/ns#
Subject Item
n14:this
foaf:made
n2:VirtOAuthTestToolExamplePolls
Subject Item
n10:item
n11:services_of
n2:VirtOAuthTestToolExamplePolls
Subject Item
n16:this
sioc:creator_of
n2:VirtOAuthTestToolExamplePolls
Subject Item
n6:ODS
sioc:container_of
n2:VirtOAuthTestToolExamplePolls
atom:entry
n2:VirtOAuthTestToolExamplePolls
atom:contains
n2:VirtOAuthTestToolExamplePolls
Subject Item
n4:this
sioc:creator_of
n2:VirtOAuthTestToolExamplePolls
Subject Item
n2:VirtOAuthTestToolExamplePolls
rdf:type
atom:Entry sioct:Comment
dcterms:created
2017-06-13T06:08:27.472891
dcterms:modified
2017-06-29T07:32:43.180188
rdfs:label
VirtOAuthTestToolExamplePolls
foaf:maker
n14:this n28:this
dc:title
VirtOAuthTestToolExamplePolls
opl:isDescribedUsing
n9:rdf
sioc:has_creator
n4:this n16:this
sioc:attachment
n13:png n17:png n19:png n20:png n21:png
sioc:content
---+Polls OAuth REST API Example performed with the Virtuoso OAuth Testing Tool The following example demonstrates adding and getting poll by the ODS REST APIs *poll.new* and *poll.get* using the OAuth Test Tool. Full list of the ODS REST APIs for ODS Polls you can find [[VirtuosoOdsControllersPolls][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 Polls instance or create such in not existing. For ex.: cb0c9e0335fa088f7c779b0fec826b5a6af120c4 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*: cb0c9e0335fa088f7c779b0fec826b5a6af120c4 1. *API method*: poll.new 1. *API parameters*: <verbatim> inst_id=61&name=MyPoll </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=mypolls" 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>61</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 mypolls </verbatim> 1. Select for *Query options*: "Generate URI and Submit". * <img src="%ATTACHURLPATH%/op1.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%/op2.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 poll will be: 1012 * <img src="%ATTACHURLPATH%/op3.png" style="wikiautogen"/> 1. Now lets get the data for the created poll. In the form enter: 1. *API method*: poll.get 1. *API parameters*: poll_id=1012 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 poll with the given above id. * <img src="%ATTACHURLPATH%/op4.png" style="wikiautogen"/> ---++Related * [[VirtuosoOdsControllersPolls][Polls REST Controllers]] * [[VirtOAuthTestTool][OAuth Test Tool for ODS Controllers]] - Examples: * [[VirtOAuthTestToolExampleBriefcase][ODS Briefcase]] * [[VirtOAuthTestToolExampleWeblog][ODS Weblog]] * [[VirtOAuthTestToolExampleAddressbook][ODS Addressbook]] * [[VirtOAuthTestToolExampleBookmarks][ODS Bookmarks]] * [[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]] CategoryPolls CategoryODS
sioc:id
d4118f432df530bfefd5d28b041dc1db
sioc:link
n2:VirtOAuthTestToolExamplePolls
sioc:has_container
n6:ODS
n11:has_services
n10:item
atom:title
VirtOAuthTestToolExamplePolls
sioc:links_to
n2:VirtOAuthControllers n2:VirtOAuthTestTool n2:VirtOAuthTestToolExampleAddressbook n2:VirtOAuthExamples n2:VirtuosoOdsControllersPolls n18:ods n22:OAuth n22:VirtOAuthSPARQL n22:VirtuosoOAuthServer n2:VirtOAuthTestToolExampleBookmarks n22:VirtOAuth n2:VirtuosoOdsUbiquityTutorials n2:VirtOAuthTestToolExampleBriefcase n23: n24:vsp n2:VirtuosoOdsUbiquityTutorialsOAuth n2:VirtOAuthTestToolExampleCalendar n2:VirtOAuthTestToolExampleFeeds n27:api n2:CategoryODS n2:CategoryPolls
atom:source
n6:ODS
atom:author
n14:this
atom:published
2017-06-13T06:08:27Z
atom:updated
2017-06-29T07:32:43Z
sioc:topic
n6:ODS
Subject Item
n2:VirtOAuthTestToolExampleWeblog
sioc:links_to
n2:VirtOAuthTestToolExamplePolls