Отправить messenge в почтовый ящик друга

Я получил своего друга из Фейсбука, используя этот код. Поиском и проведением некоторых исследований этот код работает в моем проекте.

     public void harhar(){
          HttpClient httpclient = new DefaultHttpClient();
          String url = "https://graph.facebook.com/me/friends?access_token=" + URLEncoder.encode(access_token);
          HttpGet httppost = new HttpGet(url);

          try {
              HttpResponse response = httpclient.execute(httppost);

              // to get the response string
              BufferedReader reader = new BufferedReader(
                      new InputStreamReader(
                              response.getEntity().getContent(), "UTF-8"));
              // used to construct the string
              String res = "";
              for (String line = null; (line = reader.readLine()) != null;) {
                  res += line + "\n";

              }
              JSONObject obj = new JSONObject(new JSONTokener(res));
              JSONArray data = obj.getJSONArray("data");
              Log.i("DATA",data+"");
              int len = data.length();
              for (int i = 0; i < len; i++) {
                  JSONObject currentResult = data.getJSONObject(i);
                  String name = currentResult.getString("name");
                  String id=currentResult.getString("id");
                  Log.i("Name harharhar",name);
                  Log.i("ID harharhar",id);
                  namelist.add(name);
                  IDList.add(id);
              }
          } catch (ClientProtocolException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
          } catch (IOException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
          } catch (JSONException e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
          }
    }

Я получил удостоверение личности и имя моих друзей. Я делаю просмотр списка и сохраняю имена. Теперь я хочу узнать, как отправить сообщение в почтовый ящик друга. Пожалуйста помоги.

0 ответов

Другие вопросы по тегам