Welcome Guest, Not a member yet? Register   Sign In
MeNeedz Twitter
#11

[eluser]hugle[/eluser]
[quote author="Demedes" date="1262465735"]Offtopic message, but: What does MeNeedz mean? Thank you :-)[/quote]

IMHO, waldmeister needs, or 'me needs' in other words 'i need' SomelibrarySmile)))))))
#12

[eluser]davidbehler[/eluser]
MeNeedz was originally derived from a project I was working on but I never got to finish it.

It has no real meaning...you might understand it as "i had a need for a certain library and want to share it with you all" Smile
#13

[eluser]Sbioko[/eluser]
)))) Good thoughts ))))
#14

[eluser]Sbioko[/eluser]
Is this possible to get all tweets of the public timeline, not only 20? This will define, if I will use your library. Thank you!
#15

[eluser]davidbehler[/eluser]
No, as far as I know it's not possible as the API will only return the "...20 most recent statuses from non-protected users..."

Check the API Documentation for more info on that: http://apiwiki.twitter.com/Twitter-REST-...c_timeline
#16

[eluser]Yash[/eluser]
Great work !
#17

[eluser]Sbioko[/eluser]
Oh, waldmeister, you were wrong! You can easily get all the twitter statuses of the public timeline or friends timeline. I do it using jQuery, so It can be easily done using PHP+Codeigniter. If you want some help, ask me!

@Retweet :-) Sorry, again!
#18

[eluser]davidbehler[/eluser]
Feel free to share your solution here, I'm always open for improvements of my libraries.
#19

[eluser]Sbioko[/eluser]
Ok. I will do it later.
#20

[eluser]BobbyB[/eluser]
Hi,
I was wondering how to apply this pattern replacement code, I found in another thread to the MeNeedz Twitter library.
Code:
$patterns = array(
            // Detect URL's
            '|([a-z]{3,9}://[a-z0-9-_./?&+]*)|i' => '<a href="$0" target="_blank">$0</a>',
            
            // Detect Email
            '|[a-z0-9._%+-]+@[a-z0-9.-]+.[a-z]{2,6}|i' => '<a href="mailto:$0">$0</a>',
            
            // Detect Twitter @usernames
            '|@([a-z0-9-_]+)|i' => '<a href="http://twitter.com/$1" target="_blank">$0</a>',
            
            // Detect Twitter #tags
            '|#([a-z0-9-_]+)|i' => '<a href="http://twitter.com/search?q=#$1" target="_blank">$0</a>'
        );

Thanks in advance for your help!




Theme © iAndrew 2016 - Forum software by © MyBB