我正在尝试在我正在处理的应用程序中将Parse转换为Clevertap。我尝试查看https://blog.clevertap.com/transitioning-from-parse-push-notifications/,但对我要完成的工作并没有多大运气。

在需要转换的方法中,我希望用户能够使用以下命令来订阅和取消订阅频道:

    private class AllPushClickListener implements View.OnClickListener {

    private AppFeed mAppFeed;

    public AllPushClickListener(AppFeed appFeed) {
        mAppFeed = appFeed;
    }

    @Override
    public void onClick(View v) {
        Log.d(TAG, "subscribing to " + getPushChannelName(mAppFeed) + "_all");
        ParsePush.unsubscribeInBackground(getPushChannelName(mAppFeed) + "_top");
        ParsePush.subscribeInBackground(getPushChannelName(mAppFeed) + "_all");
        mAppFeed.setPushNotificationsOn(true);
        mAppFeed.setReceiveTopNotifications(false);
        mAppFeed.setChannelName(getPushChannelName(mAppFeed) + "_all");

        hideNotificationButtons();
        mPushAllStoriesSelectedButton.setVisibility(View.VISIBLE);

        mPersistedFeedDaoHelper.createOrUpdate(mAppFeed);
    }
}


不知道如何将其转换为Clevertap。

谢谢您的帮助。

最佳答案

您可以在这里找到解析迁移指南-https://github.com/CleverTap/parse-migrate,并且在这里讨论通道-https://github.com/CleverTap/parse-migrate#managing-channels。如果您需要更多帮助或有任何疑问,请发送电子邮件至[email protected]

08-04 06:42