我正在用新的LinkedIn的Android SDK按文檔和LinkedIn新的示例應用程序「訪問連接被拒絕」的錯誤: -訪問連接被拒絕新的LinkedIn的Android SDK
APIHelper apiHelper = APIHelper
.getInstance(getApplicationContext());
apiHelper.getRequest(ApiActivity.this, "https://" + host
+ "/v1/people/~/connections:(first-name,last-name,public-profile-url)",
new ApiListener() {
@Override
public void onApiSuccess(ApiResponse s) {
((TextView) findViewById(R.id.response))
.setText(s.toString());
}
@Override
public void onApiError(LIApiError error) {
((TextView) findViewById(R.id.response))
.setText(error.toString());
}
});
我也具有與iOS API相同的問題。 –