2013-11-15 63 views
1

任何人都可以幫助我使用LinkedIn API獲取LinkedIn聯繫人或朋友或連接列表linkedin-j-android.jar.I能夠獲取所有當前用戶配置文件信息,但不知道如何獲取聯繫人或朋友列表。我在SO和Google上發現了很多,但仍然沒有得到正確的解決方案。請有人幫我解決這個問題。爲此我嘗試了這個。如何在Android中獲取LinkedIn聯繫人或好友列表?

ProgressDialog progressDialog = new ProgressDialog(this); 
    LinkedinDialog d = new LinkedinDialog(this, progressDialog); 
    d.show(); 

    // set call back listener to get oauth_verifier value 
    d.setVerifierListener(new OnVerifyListener() { 
     @Override 
     public void onVerify(String verifier) { 
      try { 
       accessToken = LinkedinDialog.oAuthService 
         .getOAuthAccessToken(LinkedinDialog.liToken, 
           verifier); 
       LinkedinDialog.factory.createLinkedInApiClient(accessToken); 
       client = factory.createLinkedInApiClient(accessToken); 
       // client.postNetworkUpdate("Testing by Mukesh!!! LinkedIn wall post from Android app"); 
       Loggger.i(TAG, "ln_access_token: " + accessToken.getToken()); 
       Loggger.i(TAG, 
         "ln_access_token: " + accessToken.getTokenSecret()); 
       com.google.code.linkedinapi.schema.Person profile = client 
         .getProfileForCurrentUser(EnumSet.of(
           ProfileField.ID, ProfileField.FIRST_NAME, 
           ProfileField.LAST_NAME, 
           ProfileField.CONNECTIONS)); 
       linkedInID = profile.getId(); 

       Loggger.i(TAG, "PersonID : " + linkedInID); 
       linkedInFirstName = profile.getFirstName(); 
       linkedInLastName = profile.getLastName(); 
       Connections = profile.getConnections(); 
       Log.e(TAG, "CONNECTION : " + Connections); 

       List<Contact> contactList; 
       contactList = (ArrayList<Contact>) getIntent() 
         .getSerializableExtra("contact"); 
       for (int i = 0; i < contactList.size(); i++) { 
        final Contact bean = contactList.get(i); 
        Log.d("Custom-UI", 
          "Display Name = " + bean.getDisplayName()); 
        Log.d("Custom-UI", 
          "First Name = " + bean.getFirstName()); 
        Log.d("Custom-UI", "Last Name = " + bean.getLastName()); 
        Log.d("Custom-UI", "Contact ID = " + bean.getId()); 
        Log.d("Custom-UI", 
          "Profile URL = " + bean.getProfileUrl()); 
        Log.d("Custom-UI", 
          "Profile Image URL = " 
            + bean.getProfileImageURL()); 
        Log.d("Custom-UI", "Email = " + bean.getEmail()); 
       } 

       Loggger.e(TAG, "connections : " + Connections); 
       Loggger.e(TAG, "linkedin firstname : " + linkedInFirstName); 
       Loggger.e(TAG, "linkedin lastname : " + linkedInLastName); 



      } catch (Exception e) { 
       e.printStackTrace(); 
      } 
     } 
    }); 

    // set progress dialog 
    progressDialog.setMessage("Loading..."); 
    progressDialog.setCancelable(true); 
    progressDialog.show(); 

回答

0

1.Refer這個鏈接:https://github.com/Hafiz-Waleed-Hussain/EasyLinkedInAndroid作爲庫

2.In主要的Java佈局使用:

_EasyLinkedIn = EasyLinkedIn.getInstance(this, "api key", 
       "secret key", 
       "https://github.com/Hafiz-Waleed-Hussain/EasyLinkedInAndroid", 
       "", ""); 

    _EasyLinkedIn.authorize(MainActivity.this, new Callback() { 

     @Override 
     public void onSucess(Object data) { 

      String fields = "id,first-name,headline"; 

      _EasyLinkedIn.getUserInfo(this, this, fields); 

      String fields1 = "id"; 

      String url = "https://api.linkedin.com/v1/people/~/connections:(id=Gcn6gB9aCj)?format=json&oauth2_access_token=" 
        + EasyLinkedIn.getAccessToken(); 
      _EasyLinkedIn.getConnections(this, this, fields1); 

     } 

     @Override 
     public void onFailure() { 

     } 
    }); 

onDownloadingComplete()方法的使用日誌來打印對象放慢參數

+0

你有鏈接以獲得在簡單的Java類的本機應用LinkedIn的訪問令牌。記住沒有活動課? –

相關問題