[更新]justBlog的widget

突然覺得放在旁邊的widget必須要整理一下,google+實在很少在更新,不如不要!plurk則大部分是justblog更新的噗,在連過去也沒有什麼意義。
倒是有一些放在facebook page的分享,大部分是內容簡單到沒有必要些一篇文章來記載的東西,應該拿來放一下吧!?
於是到wordpress.org搜尋了一下,發現Facebook Social Widgets這個外掛很適合。然後再仔細看看,原來直接套用facebook的Social Plugins也是可以。
閱讀全文

[Titanium+Facebook] 在Titanium中始用Graph API來po文,回應,按讚

想要在APP中加入與Facebook互動的功能,最方便的應該就是用Graph API 了!
而Titanium則把這件事情幫我們都準備好了,所以一旦用Titanium.Facebook.loggedIn做完登入的動作後,就可以用Titanium.Facebook.requestWithGraphPath來使用facebook的Graph API。

像是要取得使用者資料:

	Titanium.Facebook.requestWithGraphPath('me', {}, 'GET', function(e) {
		if (e.success) {
			//something...
		else if (e.error) {
			//something....
		}
	});

閱讀全文

[facebook] 在FBML APP中使用FB幣


其實我真的不明白為了什麼facebook要把這件事搞得那~麼複雜!?
明明FBML就是他自幾家的東西,應該是要支援最好,隨便呼叫個API就可以用才對!結果已經花了九牛二虎的力氣加上兩個禮拜的時間申請好EIN,迎接的卻是:
API Error Code: 1151
API Error Description: Application is not enabled for using Facebook Credits.
Error Message: Invalid Application
然後看了半天的英文才發現官方是這樣回答

Hi Everyone,

Thanks for the comments. All games on Facebook.com will be required to migrate to Facebook Credits as their exclusive payment method by July 1st, 2011.

This includes fbml games. As we are in the process of deprecating fbml, announced last August, Credits is not supported in fbml. All fbml games will need to migrate to iframe to use Credits.

Thank you,

Sara

Facebook Platform Team

這是什麼鬼???
閱讀全文