-
Notifications
You must be signed in to change notification settings - Fork 508
Applauding your efforts to update: What are your plans for this version? #4
Comments
0: ideally, this would be merged into the main Facebook plugin, however, the team over there doesn't seem to be responding too much to issues lately, and hasn't announced any plan on npm support so I'm a bit on the dark on what's their plan to migrate when the cordova.io repository goes dark on October. |
👍 I'm glad someone is continuing the work from the original plugin since this is, in my opinion, one of the most critical/important cordova plugins out there. The original repository have a lot of issues stacking up and it really doesn't seem to be getting a lot of attention. Thanks and congrats for your work 😄 |
+1 for DELETE support. But actually, this should be possible with a graph-call either. I did something like that with an old plugin: (cordova facebook ccsoft, but really, don't try that plugin :D) $rootScope.facebook.graphCall(
"me/permissions",
{},
"DELETE",
function(resp) {
localStorageService.clearAll();
appNavigator.resetToPage('login.html');
window.plugins.spinnerDialog.hide();
//console.log("My name is: " + resp.name + " and id is: " + resp.id);
//console.log(resp);
},
function(a){
localStorageService.clearAll();
appNavigator.resetToPage('login.html');
window.plugins.spinnerDialog.hide();
}
); But as far as I can see, I can't submit "DELETE" to that call, am I right? That would be very bad :( |
Nevermind, it is possible. Works like a charm. Thank YOU SO MUCH for this plugin! facebookConnectPlugin.api("me/permissions?method=DELETE", [],
function(resp) {
localStorageService.clearAll();
appNavigator.resetToPage('login.html');
window.plugins.spinnerDialog.hide();
},
function(a){
...
}
); Just submit method as a param (eg DELETE) |
Some other suggestions I made to the old facebook plugin maintainer:
I would love to do this by myself, but I really don't have enough know how on this. I hope we could see some of this features. If you want, I could open an own ticket for my wishes but I thought this thread is a good place for it. |
Thanks for your suggestions @hirbod can you please create a separate issue for each suggestion to have a better tracking? |
@jeduan, of course! |
Hi, I, for one, am very glad that you're taking up updating this very important plugin. It would be good if you updated the README to announce your plans or intent.
I'm particularly curious as to whether you will:
The text was updated successfully, but these errors were encountered: