Bu Grafik API'sinde olmadığı için bu Geri Kalan öğenin kullanımdan kaldırılmadığı varsayılır.
http://developers.facebook.com/docs/reference/rest/users.setStatus
Bu http://developers.facebook.com/tools/console/ adresini deneyebilirsiniz . Bu bile, silinebilecek bir duruma sahip olduğunuzu varsayar.
İzin kontrolü
<button id="fb-login">Login & Permissions</button>
<script>
document.getElementById('fb-login').onclick = function() {
var cb = function(response) {
Log.info('FB.login callback', response);
if (response.session) {
Log.info('User logged in');
if (response.perms) {
Log.info('User granted permissions');
}
} else {
Log.info('User is logged out');
}
};
FB.login(cb, { perms: 'status_update' });
};
</script>
Aklı kontrol
<button onclick="recheck()">Recheck</button>
<script>
window.recheck = function() {
FB.api(
{
method: 'users.hasAppPermission',
ext_perm: 'publish_stream'
},
function(response) {
Log.info('Do we really have permission ?', response);
}
);
};
</script>
User.setStatus komutunu kullanarak durumu temizleyin
<button onclick="clearIT()">Clear</button>
<script>
window.clearIT = function() {
FB.api(
{
method: 'users.setStatus',
uid: 'YOUR USER ID',
clear: 'true'
},
function(response) {
Log.info('Cleared Status', response);
}
);
};
</script>
Yine de anlamını görmüyorum. Herkes sonunda yeni kullanıcı arayüzüne aktarılacak.
Http://www.facebook.com/settings/?tab=applications adresinden sonra Rell'den (test Facebook uygulaması) izinleri kaldırmayı unutmayın
- Wayne'in bahsettiği iş için geliştirilebilecek daha kısa bir yol var. Durumunuzu güncellemeyi deneyebilirsiniz. Hemen ardından en son durum silinir. Bu (teorik olarak - arkadaşlarımla böyle oynamak istediğimi sanmıyorum) çalışmalıdır.