gpt4 book ai didi

blackberry - 如何从黑莓应用程序制作日程推文

转载 作者:行者123 更新时间:2023-12-04 06:22:12 24 4
gpt4 key购买 nike

我正在将 Twitter 集成到我的 Blackberry 应用程序中。我可以 Tweet从我的应用程序。但现在我想schedule the tweet即我想设置时间,它会自动推文。我正在使用 RestApi of Twitter .我已通过 验证了我的申请OAuth 1.0 .有没有机构这样做

请帮忙谢谢

更新

实际上为 Jprofitt说我需要在 ApplicationManager 的帮助下安排我的应用程序但我的情况是

I made a class which extends MainScreen Class for doing Tweet. So what i want to do is to call this class after setting the time but dont get any clear Idea can any body please look at it and advice me some Solution. While i was searching for ApplicationManager i have seen that there is a class which extend Application so i am confused can any body help me out from this



谢谢

最佳答案

我看不出你为什么不能这样做。您需要做的就是对用户进行一次身份验证,以便您拥有发送 Tweet 所需的所有 token 。之后只需使用 ApplicationManager安排您的应用程序使用备用入口点运行,该入口点指示它发送已排队发送的推文。

一些示例代码:

ApplicationManager appMan = ApplicationManager.getApplicationManager();
ApplicationDescriptor myApp = ApplicationDescriptor.currentApplicationDescriptor();

if(appMan.scheduleApplication(myApp, timeToRunApp, true)) {
//scheduled to run, do something if you need to
}
else{
//failed to schedule, do something else
}

如果要为备用入口点传递参数,请将 ApplicationDescriptor 更改为 ApplicationDescriptor myApp = new ApplicationDescriptor(ApplicationDescriptor.currentApplicationDescriptor(), new String[]{"arg1"});

关于blackberry - 如何从黑莓应用程序制作日程推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6424414/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com