Using Google Spreadsheet API on Blackberry
- by Dev
I am trying to build a Google spreadsheet synchronization feature on a blackberry application that I am building. Not being a pro I was hunting for some sample code to get a grasp of the flow but I could not.
When I am using the API from Google to access spreadsheets, it suggests to use the SpreadsheetService class.
try{
SpreadsheetService service = new SpreadsheetService ("MRythm");
service.setUserCredentials("username", "password");
service.getFeed(new URL(""), arg1)
}catch(Exception e){
}
Now the problem is J2ME or Blackberry does not feature the URL class from java.net library.
I am just looking for a sample approach to connect to a Google spreadsheet from Blackberry.
Thanks in advance