Zinnia-twitter is a package putting your entries on Twitter.
Install the package on your system:
$ pip install zinnia-twitter
Tweepy will also be installed as a dependency.
Register the
'zinnia_twitter'in yourINSTALLED_APPSafter the'zinnia'application.Define these following settings with your credentials:
TWITTER_CONSUMER_KEYTWITTER_CONSUMER_SECRETTWITTER_ACCESS_KEYTWITTER_ACCESS_SECRET
If you have enabled one of the
zinnia-wysiwyg-xxxplugin widget, you need to reconstruct theEntryAdminclass manually with the provided mixins:from zinnia.admin.entry import EntryAdmin from zinnia_twitter.admin import EntryAdminTwitterMixin from zinnia_ckeditor.admin import EntryAdminCKEditorMixin class FinalEntryAdmin(EntryAdminCKEditorMixin, EntryAdminTwitterMixin, EntryAdmin): pass admin.site.unregister(Entry) admin.site.register(Entry, FinalEntryAdmin)
Note that the authentification for Twitter has changed since September 2010. The actual authentification system is based on oAuth. That’s why now you need to set these 4 settings. If you don’t know how to get these information, go to:
https://apps.twitter.com/ https://apps.twitter.com/app/(app_number)/keys
Now in the admin, you can post an update containing your entry’s title and the shortened URL of your entry.