select uid from user where uid=752688044744924

我想找一个人facebook uid

我使用这个工具facebook fql tool查询uid,uid是100000112054287,这是最新的 .

但我在android上获得了一个uid = 752688044744924 .

public void onCompleted(Response response) 
{
        // TODO Auto-generated method stub

        if(response.getError()==null)
        {
            JSONArray jsonArrayData=null;

            try 
            {   
                JSONObject  json= response.getGraphObject().getInnerJSONObject();
                jsonArrayData = json.getJSONArray(FqlQuerySyntax.JSON_DATA);    
            } 
            catch (JSONException e) 
            {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            for(int i=0;i<jsonArrayData.length();i++)
            {
                JSONObject jsonObject = (JSONObject)jsonArrayData.opt(i);   


                try 
                {
                    data.uid=jsonObject.getString("uid");
                } 
                catch (JSONException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();

                }
            }


        }

    }

如果我在facebook fql工具上使用“select uid from user uid = 752688044744924”或“select uid from user where uid = 100000112054287”,我只会得到相同的uid =“100000112054287”