---+Calendar OAuth REST API Example performed with the Virtuoso OAuth Testing Tool The following example demonstrates adding and getting event details by the ODS REST APIs *calendar.event.new* and *calendar.get* using the OAuth Test Tool. Full list of the ODS REST APIs for ODS Calendar you can find [[VirtuosoOdsControllersCalendar][here]]. 1. Go to http://demo.openlinksw.com/ods 1. Log in as user demo with password demo 1. Go to Settings->OAuth Keys * 1. Copy the Token value for an Calendar instance or create such in not existing. For ex.: dffa13c301c5915a4fb9c8c1ee7c69e2fad88454 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*: dffa13c301c5915a4fb9c8c1ee7c69e2fad88454 1. *API method*: calendar.event.new 1. *API parameters*: inst_id=59&subject=test event&eventStart=2008.11.17T12:00&eventEnd=2008.11.17T14:00 * An easy way to get the instance id is using the [[VirtuosoOdsControllers][ODS Framework Controller]] instance.get.id: $ curl -i "http://demo.openlinksw.com/ods/api/instance.get.id?user_name=demo&password_hash=4627dhe23cb53f522eag32e09gs7fceaw2c523449bdfdf&instanceName=mycalendar" 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 59 Success * You can also get the instance id using the [[VirtuosoOdsUbiquity][ODS Ubiquity commands]] sequence: ods-host http://demo.openlinksw.com/ods ods-set-mode sid ods-authenticate-user demo password demo ods-get-instance-id mycalendar 1. Select for *Query options*: "Generate URI and Submit". * 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. * 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 event will be: 1683 * 1. Now lets get the data for the created event. In the form enter: 1. *API method*: calendar.get 1. *API parameters*: event_id=1683 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 event with the given above id. * ---++Related * [[VirtuosoOdsControllersCalendar][Calendar 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]] * [[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]] CategoryCalendar CategoryODS