microsoft / winsdkfb

The Windows SDK for Facebook allows developers to provide Facebook integration for Windows Apps.
Other
182 stars 101 forks source link

Facebook Log Events #72

Open Trays opened 9 years ago

Trays commented 9 years ago

In Android and IOS FB SDK we have entire class for working with events logging:

public static void logEvent(String event) {
    try {
        Activity activity = mApplication.getActivity();
        AppEventsLogger logger = AppEventsLogger.newLogger(activity, mAppId);
        logger.logEvent(event);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

I think similar class and functionality will be useful for Windows SDK. Maybe you already planned this thing? If it useful for other users, I can try to do it by myself in my fork :)

Thanks

alakshmi1030 commented 9 years ago

Thanks for letting us know - I am assuming you are referring to these app events logging: https://developers.facebook.com/docs/app-events

For now we don't have this on our backlog - but feel free to make a pull request.