Dear all, I'm developing an app that access calendar, so I use the calendar api to gwt.
Before starting code, I tried to run and compile the example from gwt-google-apis. My request is approved and after the success message receive from OAuth protocol,
the following piece of code is generating an exception
private void getCalendarId() {
// We need to find an ID of a calendar that we have permission to write events to. We'll just
// pick the first one that gets returned, and we will delete the event when we're done.
calendar.calendarList().list().setMinAccessRole(MinAccessRole.OWNER)
.fire(new Receiver<CalendarList>() {
...
}
Checking the log file the exception is:
java.lang.NoClassDefFoundError: org/json/JSONException
I was wondering if any of you support me in this error
Best Regards
<inherits name="com.google.gwt.json.JSON" /> <inherits name="com.google.gwt.http.HTTP" />