Using Google Spreadsheet API on Blackberry

Posted by Dev on Stack Overflow See other posts from Stack Overflow or by Dev
Published on 2010-04-06T13:18:30Z Indexed on 2010/04/06 14:23 UTC
Read the original article Hit count: 495

Filed under:
|
|
|

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

© Stack Overflow or respective owner

Related posts about google

Related posts about spreadsheet