Skip to content

Commit

Permalink
Testing remote get.
Browse files Browse the repository at this point in the history
  • Loading branch information
marano committed Apr 23, 2011
1 parent c3346ce commit 319fc95
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions public/blah.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
</head>
<body>
<div id='result' />
<script>
$(function () {
$.get('https://api.foursquare.com/v2/users/self?oauth_token=YN1YTMIQU0S1KLYILLFQNQQIX5WTBZBRWW1Z2YBTLSBMJAR5', null, function (html) {
console.log(html);
$('#result').html(html);
});
});
</script>
</body>
</html>

0 comments on commit 319fc95

Please sign in to comment.