让json使用javascript从twitter api做出回应

时间:2015-12-08 10:26:04

标签: javascript jquery json twitter

@Override
public Fragment getItem(int position) {
    // getItem is called to instantiate the fragment for the given page.
    // Return a PlaceholderFragment (defined as a static inner class below).

    // return MainActivity.PlaceholderFragment.newInstance(position + 1);
    switch(position){
        case 0:
            return new Page1Fragment();
        case 1:
            return new Page2Fragment();
        case 2:
            return new Page3Fragment();
        case 3:
            return new Page4Fragment();
    }
    return null;
}

我正在尝试使用此代码获取我的最新推文 当我尝试在浏览器中测试url时,它返回一个json文件,我可以读取json 如何通过使用jquery获取文件中的返回json? 有什么建议 ?

1 个答案:

答案 0 :(得分:0)

我认为您的API身份验证很糟糕。 检查API-Url,然后重试。也许你创建一个新的。