Tweet set intersection defined by rules
-
How do I take the intersection of several rules? I want to only display hashtags from a specific user. Yet, I have been struggling for quite some time now.
One strategy I tried:
Set each rules to a unique Tag and implement via<?php fetchTweets( array( 'tag' => 'developer', 'operator' => 'AND' ) ); ?>
I am using a keyword rule and user rule. That is the only explanation I have for why this is not working.
I have also attempted to implement via:
<?php fetchTweets( array_intersect(array( 'tag' => 'echo'), array('tag' => 'Sugarsnap_name') ) );
To no avail.
What should I do?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Tweet set intersection defined by rules’ is closed to new replies.