Posts tagged 插件

让Twitter tools用上Twitter API proxy

1

博客放在国内,怎么让wordpress访问twitter呢?

使用Twitter API proxy就可以了。

让博客通过Twitter API proxy访问twitter。

wordpress的插件很丰富,肯定有一个适合的Twitter插件。

看上了Twitter tools,可貌似它不支持Twitter API proxy。

怎么办呢?

自己动手,丰衣足食啊。

找到twitter-tools.php文件中的:

1
2
3
4
5
6
define('AKTT_API_POST_STATUS', 'http://twitter.com/statuses/update.json');
define('AKTT_API_USER_TIMELINE', 'http://twitter.com/statuses/user_timeline.json');
define('AKTT_API_STATUS_SHOW', 'http://twitter.com/statuses/show/###ID###.json');
define('AKTT_PROFILE_URL', 'http://twitter.com/###USERNAME###');
define('AKTT_STATUS_URL', 'http://twitter.com/###USERNAME###/statuses/###STATUS###');
define('AKTT_HASHTAG_URL', 'http://search.twitter.com/search?q=###HASHTAG###');

用Twitter API proxy地址替换twitter.com即可。

我在GAE上搭建的Twitter API proxy可供大家免费无偿使用(不在提供服务)。

1
2
3
4
5
6
define('AKTT_API_POST_STATUS', 'http://***.appspot.com/api/statuses/update.json');
define('AKTT_API_USER_TIMELINE', 'http://***.appspot.com/api/statuses/user_timeline.json');
define('AKTT_API_STATUS_SHOW', 'http://***.appspot.com/api/statuses/show/###ID###.json');
define('AKTT_PROFILE_URL', 'http://***.appspot.com/api/###USERNAME###');
define('AKTT_STATUS_URL', 'http://***.appspot.com/api/###USERNAME###/statuses/###STATUS###');
define('AKTT_HASHTAG_URL', 'http://***.appspot.com/api/search?q=###HASHTAG###');

anyNote

0

我的第一个wordpress插件,一个便笺插件,可以把日志的部分内容以便笺形式显示。

如:

1
2
我做了一个wordpress插件
名字叫anyNote

(more…)

audio player

0

在wordpress里装了audio player插件,用来放音乐,放弃了音乐八宝盒的博客音乐组件。
我挺看好音乐八宝盒这个网站的,但总觉得这个网站好像无人看管似的,担心它不知哪天就挂了。
所以就决定用wordpress的audio player插件。

(more…)

Go to Top