Corona Sdk与社交网络整合

时间:2018-01-05 10:02:45

标签: facebook corona

我只需要你的帮助就可以在Facebook和Twitter上发布Corona SDK,在发布之前我需要确保在最终用户设备上安装了facebook或twitter应用程序。

谢谢,

1 个答案:

答案 0 :(得分:0)

您可以使用插件 CoronaProvider.native.popup.social

-- To use this plugin, add an entry into the plugins table of build.settings. When added, the build server will integrate the plugin during the build phase.
settings =
{
    plugins =
    {
        ["CoronaProvider.native.popup.social"] =
        {
            publisherId = "com.coronalabs"
        },
    },
}

-- and then in any button event use function
native.showPopup( name, options )

https://docs.coronalabs.com/plugin/CoronaProvider_native_popup_social/index.html https://docs.coronalabs.com/plugin/CoronaProvider_native_popup_social/showPopup.html

这是非常通用的解决方案,因为如果他在他的设备中有这样的apk,它将自动地给用户选择各种社交,在哪里发布:twitter,facebook,skype,email等等。