You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-7
Original file line number
Diff line number
Diff line change
@@ -22,21 +22,26 @@ The following libraries are used to make this possible:
22
22
23
23
### 1. Configure the REST client
24
24
25
-
Open `src/com.codepath.apps.restclienttemplate/RestClient.java`. Configure the `REST_API_INSTANCE`, `REST_URL`, `REST_CONSUMER_KEY`, `REST_CONSUMER_SECRET` based on the values needed to connect to your particular API. The `REST_URL` should be the base URL used for connecting to the API (i.e `https://api.twitter.com`). The `REST_API_INSTANCE` should be the class defining the service you wish to connect to. Check out the [full list of services](https://github.com/scribejava/scribejava/tree/master/scribejava-apis/src/main/java/com/github/scribejava/apis) you can select (i.e `FlickrApi.instance()`).
26
-
25
+
Open `src/com.codepath.apps.restclienttemplate/RestClient.java`. Configure the `REST_API_INSTANCE` and`REST_URL`.
publicstaticfinalStringREST_CONSUMER_KEY=BuildConfig.CONSUMER_KEY; // Change this inside apikey.properties
35
+
publicstaticfinalStringREST_CONSUMER_SECRET=BuildConfig.CONSUMER_SECRET; // Change this inside apikey.properties
36
36
// ...constructor and endpoints
37
37
}
38
38
```
39
39
40
+
Rename the `apikey.properties.example` file to `apikey.properties`. Replace the `CONSUMER_KEY` and `CONSUMER_SECRET` to the values specified in the Twitter console:
41
+
42
+
CONSUMER_KEY="adsflfajsdlfdsajlafdsjl"
43
+
CONSUMER_SECRET="afdsljkasdflkjsd"
44
+
40
45
Next, change the `intent_scheme` and `intent_host` in `strings.xml` to a unique name that is special for this application.
41
46
This is used for the OAuth authentication flow for launching the app through web pages through an [Android intent](https://developer.chrome.com/multidevice/android/intents).
42
47
@@ -393,11 +398,13 @@ Change `REST_URL` to use the Google API:
393
398
public static final String REST_URL = "https://www.googleapis.com/calendar/v3"; // Change this, base API URL
394
399
```
395
400
396
-
The consumer and secret keys should be retrieved via [the credentials section](https://console.developers.google.com/apis/credentials) in the Google developer console You will need to create an OAuth2 client ID and client secret:
401
+
The consumer and secret keys should be retrieved via [the credentials section](https://console.developers.google.com/apis/credentials) in the Google developer console You will need to create an OAuth2 client ID and client secret.
402
+
403
+
Create a file called `apikey.properties`:
397
404
398
405
```java
399
-
public static final String REST_CONSUMER_KEY = "XXX-XXX.apps.googleusercontent.com"; // Change this
400
-
public static final String REST_CONSUMER_SECRET = "XX-XXXXXXX"; // Change this
0 commit comments