All Downloads are FREE. Search and download functionalities are using the official Maven repository.

twitter4j.api.internal.UndocumentedResources Maven / Gradle / Ivy

There is a newer version: 2.2
Show newest version
/*
 * Copyright 2007 Yusuke Yamamoto
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package twitter4j.api.internal;


import twitter4j.internal.models4j.RelatedResults;
import twitter4j.internal.models4j.TwitterException;

/**
 * @author Yusuke Yamamoto - yusuke at mac.com
 * @author Mocel - mocel at guma.jp
 * @since 3.0.0
 */
public interface UndocumentedResources {
    /**
     * If available, returns an array of replies and mentions related to the specified Tweet. There is no guarantee there will be any replies or mentions in the response. This method is only available to users who have access to #newtwitter.
     * 
This method has not been finalized and the interface is subject to change in incompatible ways. *
This method calls http://api.twitter.com/1.1/related_results/show/:id * * @param statusId the numerical ID of the status you're trying to retrieve * @return the related results of a given tweet * @see #newtwitter and the API - Twitter API Announcements | Google Group * @since Twitter4J 2.1.8 */ RelatedResults getRelatedResults(long statusId) throws TwitterException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy