0
我試圖獲取使用谷歌API的聯繫人名單,我都試過了,谷歌聯繫人API 401需要授權的Android
String url = "https://www.google.com/m8/feeds/contacts/default/full";
JsonObjectRequest jsonObjReq = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d("response",response.toString());
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.d("error",error!=null?error.getMessage():"unknown error");
}
});
但我正在逐漸401
。任何幫助將不勝感激。謝謝。
我已經從Google API控制檯啓用了聯繫人API,並且我還添加了所需的範圍。出現OAuth對話框,之後我也獲得了訪問令牌。但是當我嘗試獲取聯繫人後,然後發生401問題.. –
你能建議我如何獲得Google+圈子和他們的追隨者?這也可以解決我的問題...... –