POST'ing a YQL select statement
So far the YQL query examples I've seen are RESTful urls that are sent via an html GET. I would like to use the following statement to extract keywords from text:
select * from search.termextract where context="TEXT" where TEXT may be 1000's of characters. I suppose there is a limit to the length of a url that can be sent via a GET so I wonder if I can send the query via a POST instead, or if I should divide up the text somehow and send multiple GET's?
Thanks
Mike
by
1 Reply