Posted by alienseer23 on June 25, 2009 at 5:22pm
Jump to:
| Project: | |
| Version: | 6.x-2.4 |
| Component: | Miscellaneous |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
I have installed the 2.4 version of this module and set the api url in the main settings page to use "http://identi.ca/api" and fed it my username and password, as I am using this on a single user blog site.
I also have set up my identi.ca username and password in my account settings.
Whenever I publish something, I am informed that the post was successfully submitted to "twitter", but nothing happens, no twitter or identi.ca posts actually occur.
Nothing in the logs.
Help?
Comments
#1
got the same problem. subscribing
#2
#3
Same problem.
#4
i'm looking at the code of the function twitter_set_status in twitter.inc. don't see anything special there, though. could it be the authorization?
'Authorization' => 'Basic '. base64_encode($screen_name .':'. $password)
the account information (screen_name/password) is not correctly passed to twitter_set_status. it works when you hard code the info in the function.
looks like the info is not correctly saved in the first place. the twitter account settings on the user settings page is strangely empty.
#5
I looked at the code and found that it is prepending the URL with 'http://', which of course is incorrect if you use a proper URI.
So you should use:
identi.ca/api
rather than:
http://identi.ca/api
After that it worked fine for me !
#6
great! going to give it a try
#7
#8