/docs/reference.htm

# · HTML · 152 lines · 152 code · 0 blank · 0 comment · 0 complexity · e34ecc13b009ac3a0129339b126a087d MD5 · raw file

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Foursquare Helper for WebMatrix - Reference</title>
  5. <link href="content/Site.css" rel="stylesheet" type="text/css" />
  6. <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
  7. </head>
  8. <body>
  9. <div class="container">
  10. <div class="header">
  11. <img src="content/images/webx-icon.png" alt="WebMatrix" />
  12. <img src="content/images/foursquare-logo.png" alt="Foursquare Logo" class="partnerLogo" />
  13. <h1>
  14. Microsoft WebMatrix Helpers</h1>
  15. <h2>
  16. Foursquare Helper - Reference</h2>
  17. </div>
  18. <div class="content">
  19. <div class="navLinks">
  20. <a href="startHere.htm">Start Here</a> | <a href="reference.htm">Helper Reference</a>
  21. </div>
  22. <h3>
  23. Helper Methods</h3>
  24. <p><em>Note: Current version does not support the full Foursquare API.</em></p>
  25. <table class="memberdecls">
  26. <tr>
  27. <td class="memItemLeft">
  28. static void
  29. </td>
  30. <td class="memItemRight">
  31. <strong>Initialize</strong> (string consumerKey, string consumerSecret, [string callbackUrl])
  32. </td>
  33. </tr>
  34. <tr>
  35. <td class="mdescLeft">
  36. &nbsp;
  37. </td>
  38. <td class="mdescRight">
  39. Initializes the Foursquare helper with the consumer key and secret values.
  40. </td>
  41. </tr>
  42. <tr>
  43. <td class="memItemLeft">
  44. static string
  45. </td>
  46. <td class="memItemRight">
  47. <strong>GetAuthorizationLink</strong> ([string returnUrl])
  48. </td>
  49. </tr>
  50. <tr>
  51. <td class="mdescLeft">
  52. &nbsp;
  53. </td>
  54. <td class="mdescRight">
  55. Retrieves the Foursquare login Url, for your users to login to Foursquare throught
  56. your site.
  57. </td>
  58. </tr>
  59. <tr>
  60. <td class="memItemLeft">
  61. static string
  62. </td>
  63. <td class="memItemRight">
  64. <strong>GetAccessToken</strong> ()
  65. </td>
  66. </tr>
  67. <tr>
  68. <td class="mdescLeft">
  69. &nbsp;
  70. </td>
  71. <td class="mdescRight">
  72. Once the user has granted access into Foursquare, this method returns the user's AccessToken for calling the helper methods that require it.
  73. </td>
  74. </tr>
  75. <tr>
  76. <td class="memItemLeft">
  77. static IList&lt;<a href="http://developer.foursquare.com/docs/responses/user.html">User</a>&gt;
  78. </td>
  79. <td class="memItemRight">
  80. <b>GetFriends</b> (string accessToken, [int userId])
  81. </td>
  82. </tr>
  83. <tr>
  84. <td class="mdescLeft">
  85. &nbsp;
  86. </td>
  87. <td class="mdescRight">
  88. Returns the list of friends for a given user. If the userId is not specified,
  89. returns the friends of the logged in user.
  90. </td>
  91. </tr>
  92. <tr>
  93. <td class="memItemLeft">
  94. static <a href="http://developer.foursquare.com/docs/responses/user.html">User</a>
  95. </td>
  96. <td class="memItemRight">
  97. <strong>GetUser</strong> (string accessToken, [int userId])
  98. </td>
  99. </tr>
  100. <tr>
  101. <td class="mdescLeft">
  102. &nbsp;
  103. </td>
  104. <td class="mdescRight">
  105. Returns profile information (badges, etc.) for a given user. If the userId is not specified, returns the logged in user information.
  106. </td>
  107. </tr>
  108. <tr>
  109. <td class="memItemLeft">
  110. @helper
  111. </td>
  112. <td class="memItemRight">
  113. <strong>GetFoursquareButton</strong> ([string venueId], [string tipId], [string
  114. color])
  115. </td>
  116. </tr>
  117. <tr>
  118. <td class="mdescLeft">
  119. &nbsp;
  120. </td>
  121. <td class="mdescRight">
  122. Shows a Foursquare Button, to add a venue or a tip to the user's TODO list. You should either specify the venueId or the tipId.
  123. Calling the Initialize() method is not required if you only want to use this method.
  124. </td>
  125. </tr>
  126. <tr>
  127. <td class="memItemLeft">
  128. @helper
  129. </td>
  130. <td class="memItemRight">
  131. <strong>GetBadgesWidget</strong> (string accessToken, [int userId])
  132. </td>
  133. </tr>
  134. <tr>
  135. <td class="mdescLeft">
  136. &nbsp;
  137. </td>
  138. <td class="mdescRight">
  139. Shows a widget listing the user's Foursquare badges. If the userId is not specified, defaults to the logged in user.
  140. </td>
  141. </tr>
  142. <tr><td class="memItemLeft"></td><td class="memItemRight"></td></tr>
  143. </table>
  144. </div>
  145. <ul class="footer">
  146. <li>We're always looking for <a href="mailto:webapp@microsoft.com">bugs, feedback and
  147. suggestions!</a></li>
  148. <li>&copy; 2010-2011 Microsoft Corporation. Powered by IIS Express.</li>
  149. </ul>
  150. </div>
  151. </body>
  152. </html>