I am working in Android. I have done almost all the work which is required for Foursquare integration in an Android application.
Now I am trying to add check in functionality in this application.
This is my code in android for foursquare check-in :
URL url = new URL("https://api.foursquare.com/v2/checkins/add?venueId=4d6a73bafd7ea35d0c08b24a&shout=great....&broadcast=public&oauth_token=myauthtoken");
URLConnection conn = url.openConnection();
Please tell me whether I am doing right or not? Actually I dont know that what is the procedure to add check in functionality for a venue through Foursquare in our android application.
Try using this method to post your checkin url with an empty ArrayList and null contentType.