Java SDK
The SDKs do NOT support:
- GoToAssist Service Desk
- GoToAssist Remote Support
- GoToAssist Corporate
- Admin
- SCIM
The available SDKs are licensed under the SDK License Agreement.
Installation
Install from the Maven repository
All SDKs are available as packages on the Maven repository. To use them add a dependency on com.logmein.gotomeeting-api, com.logmein.gotowebinar-api, com.logmein.goto-core-lib in your project's pom.xml. For example, to use the SDK for GoToWebinar add the following dependency:
<dependency>
<groupId>com.logmein</groupId>
<artifactId>gotowebinar-api</artifactId>
<version>2.3.0</version>
</dependency>
Direct download
File Description | File Size | Download Link | MD5 Checksum |
---|---|---|---|
GoTo Core Library | |||
----------------- | --------- | ------------- | ------------- |
GoTo Core Library Java SDK version 2.1.1 binaries | 23 KB | goto-core-lib-2.1.1.jar | daf8131084474723f79b83e560785ab2 |
GoTo Core Library Java SDK version 2.1.1 sources | 14 KB | goto-core-lib-2.1.1-sources.jar | 3a9da8bfefc857d546dbe2f06b006344 |
GoTo Core Library Java SDK version 2.1.1 documentation | 69 KB | goto-core-lib-2.1.1-javadoc.jar | b6e5938ca11c1b7a07dc3a6b9c2ecba3 |
GoToMeeting | |||
----------------- | --------- | ------------- | ------------- |
GoToMeeting Java SDK version 1.1.0 binaries | 88 KB | gotomeeting-api-1.1.0.jar | 29d4e9b690e897b71a17579ec3754512 |
GoToMeeting Java SDK version 1.1.0 sources | 62 KB | gotomeeting-api-1.1.0-sources.jar | d53eae7726cce389bbecd59ecb25fde7 |
GoToMeeting Java SDK version 1.1.0 documentation | 265 KB | gotomeeting-api-1.1.0-javadoc.jar | 70cd7be38307f9c32565b73f3ce422bc |
GoToTraining | |||
----------------- | --------- | ------------- | ------------- |
GoToTraining Java SDK version 1.00.0 binaries | 54 KB | gototraining-api-1.00.0.jar | fb795aa49970b5f46afcc7731854f3df |
GoToTraining Java SDK version 1.00.0 sources | 39 KB | gototraining-api-1.00.0-sources.jar | 38af3f1ee2af51e8cbbe35e091edf644 |
GoToTraining Java SDK version 1.00.0 documentation | 188 KB | gototraining-api-1.00.0-javadoc.jar | 15ae101ff55c500a3fc7c115b64de325 |
GoToWebinar | |||
----------------- | --------- | ------------- | ------------- |
GoToWebinar Java SDK version 2.3.0 binaries | 161 KB | gotowebinar-api-2.3.0.jar | d65448e6a5874e54dd92def9e17c608d |
GoToWebinar Java SDK version 2.3.0 sources | 111 KB | gotowebinar-api-2.3.0-sources.jar | cf2360d231eda973b8b38513a6336ca6 |
GoToWebinar Java SDK version 2.3.0 documentation | 580 KB | gotowebinar-api-2.3.0-javadoc.jar | b4aaad4b2046117e224136b1ca16fecd |
To use the binaries reference the downloaded .jar files from your project. The source code for each SDK is distributed as a maven project which you can import using the IDE of your choice.
Getting Started
The following tips assume that you already have
- a GoTo product account
- a GoTo developer account
- a client ID for the respective GoTo product. You obtain this ID after creating a client in your developer account.
If you do not, please refer to steps 1-3 of our Getting started guide.
To integrate the GoTo product into your application you need to install the homonymous SDK as well as the core library for authentication. For example, to develop for GoToWebinar, you need to install gotowebinar-api and goto-core-lib.
Before you make any calls you need to authenticate and obtain an access token.
OAuth Flow
The first step is to generate the authorization URL where the user's browser will be directed. For this you'll need your app's client ID and optionally the URL where the user will be redirected after the authorization to use your application:
import com.logmein.gotocorelib.api;
import com.logmein.gotocorelib.api.model.TokenResponse;
...
String clientId = "nMf9SaIASQ7Jy94Ehyq8GcyopR4MQSbp";
String clientSecret = "loHznAxTuXGfFaMQ";
OAuth2Api oauth2Api = new OAuth2Api(clientId, clientSecret);
String authUrl = oauth2Api.GetOAuth2AuthorisationUrl(clientId); // => "https://api.getgo.com/oauth/v2/authorize?client_id=nMf9SaIASQ7Jy94Ehyq8GcyopR4MQSbp&response_type=code"
Then you need to direct your user's browser to this authorization URL. The user will now login with their GoTo product account credentials and click "Approve" to allow your application access to their product data. After approval, the user will be redirected and you need to capture this redirection URL in order to extract from it the OAuth flow response key. You will use the latter to obtain your access token, for example:
/* using HtmlUnit as a GUI-less browser simulation */
URL url = htmlPage.getUrl(); // as string: "http://example.com/redirect-url?code=a2647d1379894cc2001eb31689cacccc"
String responseKey = oauth2Api.getResponseKey(url); // => "a2647d1379894cc2001eb31689cacccc"
TokenResponse response = oauth2Api.getAccessTokenResponse(responseKey);
String accessToken = response.getAccessToken(); // => "RlUe11faKeyCWxZToK3nk0uTKAL"
Direct Login (Deprecated)
This authentication API is now deprecated. All new clients will not be able to use this API. If you have a client for which the direct login works, that will continue to work for now.
import com.logmein.gotocorelib.api;
import com.logmein.gotocorelib.api.model.TokenResponse;
...
String userName = "test@test.com";
String userPassword = "abcxyz";
String clientId = "nMf9SaIASQ7Jy94Ehyq8GcyopR4MQSbp";
String clientSecret = "loHznAxTuXGfFaMQ";
OAuth2Api authApi = new OAuth2Api(clientId, clientSecret);
TokenResponse response = authApi.directLogin(userName, userPassword);
String accessToken = response.getAccessToken(); // => "RlUe11faKeyCWxZToK3nk0uTKAL"
Token Refresh
When you get an access token, the response also includes a refresh token. At the end of your access token's lifetime, you can send the refresh token in a call to obtain a new access token and refresh token pair:
String refreshToken = response.getRefreshToken(); // => "d1cp20yB3hrFAKeTokenTr49EZ34kTvNK"
response = authApi.getAccessTokenUsingRefreshToken(refreshToken)
Further calls
Once you have obtained your access token you can perform any other call passing in the access token as a parameter. For example, to list the starting times of all scheduled meetings:
import com.logmein.gotogotomeeting.api;
import com.logmein.gotogotomeeting.api.model.UpcomingMeeting;
...
MeetingsApi meetingsApi = new MeetingsApi();
List<UpcomingMeeting> meetings = meetingsApi.getUpcomingMeetings(accessToken);
for (UpcomingMeeting m : meetings) {
System.out.println(m.getStartTime());
}
- How much do the LogMeIn APIs cost?
- How do I get started?
- How do I get support for the APIs?
- Can I access more than one product API?
- What are the rate limits for the APIs?
- How to login or create a developer account
- How to create an OAuth client
- How to obtain an access token
- How to obtain and use refresh tokens
- How to use Postman API collections
- GoToWebinar webhooks
- How to use GoToWebinar webhooks
- Date and time conventions
- Paging, Sorting & Filtering Output
- OAuth Migration Guide
- Direct Login Migration
- Migrating from GoToConnect to LogMeIn Authentication API
- Migration Guide for the Realtime API Subscription Line Types
- Introduction
- Java SDK
- .NET SDK
- SDK License Agreement