예제 #1
0
        public string URLGetAuthor(string url, AlchemyAPI_BaseParams parameters)
        {
            CheckURL(url);
            parameters.setUrl(url);

            return(GET("URLGetAuthor", "url", parameters));
        }
예제 #2
0
        public string URLGetTextSentiment(string url, AlchemyAPI_BaseParams parameters)
        {
            CheckURL(url);
            parameters.setUrl(url);

            return(GET("URLGetTextSentiment", "url", parameters));
        }
예제 #3
0
        public string URLGetMicroformats(string url, AlchemyAPI_BaseParams parameters)
        {
            CheckURL(url);
            parameters.setUrl(url);

            return(GET("URLGetMicroformatData", "url", parameters));
        }
예제 #4
0
        public string HTMLGetAuthor(string html, string url, AlchemyAPI_BaseParams parameters)
        {
            CheckHTML(html, url);
            parameters.setHtml(html);
            parameters.setUrl(url);

            return POST("HTMLGetAuthor", "html", parameters);
        }
예제 #5
0
        public string HTMLGetAuthor(string html, string url, AlchemyAPI_BaseParams parameters)
        {
            CheckHTML(html, url);
            parameters.setHtml(html);
            parameters.setUrl(url);

            return(POST("HTMLGetAuthor", "html", parameters));
        }
예제 #6
0
        public string HTMLGetMicroformats(string html, string url, AlchemyAPI_BaseParams parameters)
        {
            CheckHTML(html, url);
            parameters.setHtml(html);
            parameters.setUrl(url);

            return(POST("HTMLGetMicroformatData", "html", parameters));
        }
예제 #7
0
        public string URLGetTitle(string url, AlchemyAPI_BaseParams parameters)
        {
            CheckURL(url);
            parameters.setUrl(url);

            return GET("URLGetTitle", "url", parameters);
        }
예제 #8
0
        public string URLGetMicroformats(string url, AlchemyAPI_BaseParams parameters)
        {
            CheckURL(url);
            parameters.setUrl(url);

            return GET("URLGetMicroformatData", "url", parameters);
        }
예제 #9
0
        public string HTMLGetMicroformats(string html, string url, AlchemyAPI_BaseParams parameters)
        {
            CheckHTML(html, url);
            parameters.setHtml(html);
            parameters.setUrl(url);

            return POST("HTMLGetMicroformatData", "html", parameters);
        }