|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<rdf:RDF |
| 3 | + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
| 4 | + xmlns:oauth="http://eclipse.org/lyo/server/oauth#"> |
| 5 | + |
| 6 | + <!-- Sample OAuth 1.0a Consumer for a web application --> |
| 7 | + <rdf:Description> |
| 8 | + <rdf:type rdf:resource="http://eclipse.org/lyo/server/oauth#Consumer"/> |
| 9 | + <oauth:consumerKey>web-app-consumer</oauth:consumerKey> |
| 10 | + <oauth:consumerSecret>d2ViLWFwcC1zZWNyZXQtYTFiMmMzZDRlNWY2ZzdoOGk5ajA=</oauth:consumerSecret> |
| 11 | + <oauth:consumerName>Web Application Client</oauth:consumerName> |
| 12 | + <oauth:trusted>false</oauth:trusted> |
| 13 | + <oauth:provisional>false</oauth:provisional> |
| 14 | + </rdf:Description> |
| 15 | + |
| 16 | + <!-- Sample OAuth 1.0a Consumer for a mobile application --> |
| 17 | + <rdf:Description> |
| 18 | + <rdf:type rdf:resource="http://eclipse.org/lyo/server/oauth#Consumer"/> |
| 19 | + <oauth:consumerKey>mobile-app-consumer</oauth:consumerKey> |
| 20 | + <oauth:consumerSecret>bW9iaWxlLWFwcC1zZWNyZXQtazlsOG03bjZvNXA0cTNyMnMxdDA=</oauth:consumerSecret> |
| 21 | + <oauth:consumerName>Mobile Application Client</oauth:consumerName> |
| 22 | + <oauth:trusted>false</oauth:trusted> |
| 23 | + <oauth:provisional>false</oauth:provisional> |
| 24 | + </rdf:Description> |
| 25 | + |
| 26 | + <!-- Sample trusted OAuth 1.0a Consumer for automated systems --> |
| 27 | + <rdf:Description> |
| 28 | + <rdf:type rdf:resource="http://eclipse.org/lyo/server/oauth#Consumer"/> |
| 29 | + <oauth:consumerKey>automation-consumer</oauth:consumerKey> |
| 30 | + <oauth:consumerSecret>YXV0b21hdGlvbi1zZWNyZXQtdTF2Mncza3g0eTV6NmE3YjhjOWQw</oauth:consumerSecret> |
| 31 | + <oauth:consumerName>Automation Service</oauth:consumerName> |
| 32 | + <oauth:trusted>true</oauth:trusted> |
| 33 | + <oauth:provisional>false</oauth:provisional> |
| 34 | + </rdf:Description> |
| 35 | + |
| 36 | + <!-- Sample provisional consumer for development/testing --> |
| 37 | + <rdf:Description> |
| 38 | + <rdf:type rdf:resource="http://eclipse.org/lyo/server/oauth#Consumer"/> |
| 39 | + <oauth:consumerKey>dev-test-consumer</oauth:consumerKey> |
| 40 | + <oauth:consumerSecret>ZGV2LXRlc3Qtc2VjcmV0LWUxZjJnM2g0aTVqNms3bDhtOW4w</oauth:consumerSecret> |
| 41 | + <oauth:consumerName>Development Test Client</oauth:consumerName> |
| 42 | + <oauth:trusted>false</oauth:trusted> |
| 43 | + <oauth:provisional>true</oauth:provisional> |
| 44 | + </rdf:Description> |
| 45 | + |
| 46 | +</rdf:RDF> |
0 commit comments