Coder Social home page Coder Social logo

Comments (2)

themattharris avatar themattharris commented on July 29, 2024

The error you are getting back from the Twitter Search API is because your request doesn't specify the 'q' parameter - it's not related to the pages parameter which is mutated into a string when the request URL is built.

Looking at your code http://pastebin.com/H58cRHVa it seems that you are mixing uses. My example script prompts for inputs when executed through the command line. If you want to use it interactively on a webpage you would need to code up an HTML form or hardcode the search values.

In your code the input reading line is line 93. It's this line that won't work in an HTML page, it's designed for command line

$p[$k] = tmhUtilities::read_input("{$v}: ");

The simplest way to call the search API with my code is to do this:

date_default_timezone_set('GMT');

require '../tmhOAuth.php';
require '../tmhUtilities.php';
$tmhOAuth = new tmhOAuth(array());
$tmhOAuth->request(
  'GET',
  'http://search.twitter.com/search.json',
  array(
    'q'        => 'twitter',
    'rpp'      => '100',
  ),
  false
);

if ($tmhOAuth->response['code'] == 200) {
  $data = json_decode($tmhOAuth->response['response'], true);
} else {
  $data = htmlentities($tmhOAuth->response['response']);
  echo 'There was an error.' . PHP_EOL;
  break;
}
var_dump($data);

Last thing: don't share your consumer or oauth secret in public - you can reset them on dev.twitter.com/apps

from tmhoauth.

crossplatformdev avatar crossplatformdev commented on July 29, 2024

Thanks a lot Matt.

I've just changed the keys the first (i noticed what i did really this morning, and i was wondering if create another app or what :). Your code fits pretty well my needs, it runs ok from console and also embedded in a bigger php web (it shows the results with var_dump, I just need to return that array in function search to keep to program running as expected). I also added to your code some items to the array, like intented in the pastebin (make the function capable of advanced searchs based on id, lang, or location).

Effectivelly it works with a form in other side, where you select the terms to search, the action and also could add a string (i.e. retweeting all items in #hashtag to @Someone). I made that part the first. It worked with twitterOAuth.php from another developer, but that API is buggy i think.

I surely may change spam and tweet functions, but that would be another issue. Thanks a lot and pardon moi the noobness :)

I mark this as closed.

from tmhoauth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.