Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to use the createLinkedInApiClient() in my code using this library. Here is my simple two line code:

<pre>
final LinkedInApiClientFactory? factory = 
    LinkedInApiClientFactory.newInstance(globalclass.myOAUTHConstants4LinkedIn.OAUTH_USER_TOKEN,   
    globalclass.myOAUTHConstants4LinkedIn.OAUTH_USER_SECRET);

Log.e(TAG,"globalclass.myOAUTHConstants4LinkedIn.OAUTH_USER_SECRET" 
    +globalclass.myOAUTHConstants4LinkedIn.OAUTH_USER_SECRET);

Log.e(TAG, "factory is" + factory); 
    final LinkedInApiClient client = factory.createLinkedInApiClient(accessToken, 
    accessTokenSecret);

Log.e(TAG, "client is" + client);`
</pre>

The call createLinkedInApiClient() is failing. Its throwing the following error: Anyone see what is wrong in the above code?

<pre>
01-20 04:46:59.936: E/SendtheMessagetoLinkedIn(1911): factory iscom.google.code.linkedinapi.client.LinkedInApiClientFactory@40f5a718

01-20 04:47:00.906: E/AndroidRuntime(1911): FATAL EXCEPTION: AsyncTask #1

01-20 04:47:00.906: E/AndroidRuntime(1911): java.lang.RuntimeException: An error occured while executing doInBackground()

01-20 04:47:00.906: E/AndroidRuntime(1911):     at android.os.AsyncTask$3.done(AsyncTask.java:299)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:352)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.concurrent.FutureTask.setException(FutureTask.java:219)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.concurrent.FutureTask.run(FutureTask.java:239)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:230)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.lang.Thread.run(Thread.java:856)
01-20 04:47:00.906: E/AndroidRuntime(1911): Caused by: java.lang.ExceptionInInitializerError

01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.google.code.linkedinapi.client.LinkedInApiClientFactory.createLinkedInApiClient(LinkedInApiClientFactory.java:110)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.google.code.linkedinapi.client.LinkedInApiClientFactory.createLinkedInApiClient(LinkedInApiClientFactory.java:169)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.VEMUZ9.SanDiego.SendtheMessagetoLinkedIn.SendLinkedInMessagesThread(SendtheMessagetoLinkedIn.java:162)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.VEMUZ9.SanDiego.SendtheMessagetoLinkedIn.access$0(SendtheMessagetoLinkedIn.java:143)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.VEMUZ9.SanDiego.SendtheMessagetoLinkedIn$AsyncSendtheMessagetoLinkedIn.doInBackground(SendtheMessagetoLinkedIn.java:50)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.VEMUZ9.SanDiego.SendtheMessagetoLinkedIn$AsyncSendtheMessagetoLinkedIn.doInBackground(SendtheMessagetoLinkedIn.java:1)

01-20 04:47:00.906: E/AndroidRuntime(1911):     at android.os.AsyncTask$2.call(AsyncTask.java:287)
01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.concurrent.FutureTask.run(FutureTask.java:234)

01-20 04:47:00.906: E/AndroidRuntime(1911):     ... 4 more
01-20 04:47:00.906: E/AndroidRuntime(1911): Caused by: java.lang.NullPointerException: in == null
01-20 04:47:00.906: E/AndroidRuntime(1911):     at java.util.Properties.load(Properties.java:246)
01-20 04:47:00.906: E/AndroidRuntime(1911):     at com.google.code.linkedinapi.client.constant.ApplicationConstants.<clinit>(ApplicationConstants.java:42)

01-20 04:47:00.906: E/AndroidRuntime(1911):     
</pre>

... 12 more

Anyone see what is wrong in the above code?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.