Получение исключения NullPointerException в API Google при использовании биллингового API Google

#google-checkout

#google-оформить заказ

Вопрос:

Этот вопрос связан с биллинговым API приложения Google Marketplace. Я пытаюсь получить лицензию клиента, выполнив шаги, упомянутые в следующем месте:http://code.google.com/googleapps/marketplace/v2/developers_guide.html#customer_license

Мой код:

 AppsMarketService service = new AppsMarketService();
service.appId = myAppID;
service.appName = "MyApp";
service.endpoint = "https://www.googleapis.com/appsmarket/v2/";
service.consumerKey = service.appId   ".apps.googleusercontent.com";
service.consumerSecret = MyAppSecretKey;
service.authorize();
CustomerLicense customerLicense = service.getCustomerLicense("example.com", true);
  

Но я получаю следующее исключение:

 java.lang.NullPointerException
    at com.google.appengine.api.urlfetch.URLFetchServiceImpl.fetch(URLFetchServiceImpl.java:31)
    at com.google.api.client.appengine.UrlFetchRequest.execute(UrlFetchRequest.java:80)
    at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:207)
    at com.google.api.client.sample.appsmarket.AppsMarketService.getCustomerLicense(AppsMarketService.java:117)
...
  

Я использую следующие API:

appsmarket-2010_12_08.jar, google-api-client-1.2.1-alpha.jar, google-api-client-googleapis-1.2.1-alpha

Пожалуйста, помогите.