|
@@ -25,7 +25,7 @@ public class GTMService {
|
|
|
private TagManager tagManager;
|
|
|
|
|
|
@PostConstruct
|
|
|
- private TagManager init() throws GeneralSecurityException, IOException {
|
|
|
+ public void init() throws GeneralSecurityException, IOException {
|
|
|
// Service account authorization;
|
|
|
HttpTransport httpTransport = GoogleNetHttpTransport.newTrustedTransport();
|
|
|
GoogleCredential credential =
|
|
@@ -35,7 +35,8 @@ public class GTMService {
|
|
|
.getResourceAsStream("google/service-account-key.json"))
|
|
|
.createScoped(TagManagerScopes.all());
|
|
|
|
|
|
- return new TagManager.Builder(httpTransport, GsonFactory.getDefaultInstance(), credential)
|
|
|
- .build();
|
|
|
+ this.tagManager =
|
|
|
+ new TagManager.Builder(httpTransport, GsonFactory.getDefaultInstance(), credential)
|
|
|
+ .build();
|
|
|
}
|
|
|
}
|