pjq.weibo.openapi.examplesnew.WeiboApiFriendShipsExample Maven / Gradle / Ivy
/*
* Copyright © 2021 pengjianqiang
* All rights reserved.
* 项目名称:微博开放平台API-JAVA SDK
* 项目描述:基于微博开放平台官网的weibo4j-oauth2-beta3.1.1包及新版接口做二次开发
* 项目地址:https://github.com/qqxadyy/weibo-openapi-4java
* 许可证信息:见下文
*
* ======================================================================
*
* The MIT License
* Copyright © 2021 pengjianqiang
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package pjq.weibo.openapi.examplesnew;
import java.io.IOException;
import pjq.weibo.openapi.apis.WeiboApiFriendShips;
import weibo4j.Weibo;
import weibo4j.model.WeiboException;
import weibo4j.org.json.JSONException;
public class WeiboApiFriendShipsExample {
public static void main(String[] args) throws WeiboException, IOException, JSONException {
try {
String accessToken = "2.0035IE5CHIqjUEa25cf779509xGamC";
String uid = "";
String screenName = "";
// String accessToken = "2.00bqKnvBHIqjUEb1a1a269fcNCa72B";
// String uid = "";
// String screenName = "";
WeiboApiFriendShips apiObj = Weibo.of(WeiboApiFriendShips.class, accessToken);
System.out.println(apiObj.apiGetMyFriendsByScreenName(screenName));
// System.out.println(apiObj.apiGetMyFriendsIdsByScreenName(screenName));
// System.out.println(apiObj.apiGetMyFansById(uid));
// System.out.println(apiObj.apiGetMyFansIdsById(uid));
// System.out.println(apiObj.apiShowFriendShipBetweenUsersById("", ""));
// System.out.println(apiObj.apiGetActiveFollowers(uid));
// System.out.println(apiObj.apiFollowerUserById(""));
} catch (WeiboException e) {
if (401 == e.getStatusCode()) {
System.out.println("Unable to get the access token.");
} else {
e.printStackTrace();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy