在第7章中,使无聊的东西(python)自动化,我做了放在代码区域中的项目。我需要修改该程序,使其仅以http://或https://开头进行编码。我该怎么做?
Intent intent = getIntent();
// You need define your own intent filter and figure out how
// to check if the intent is for joining a cast session.
if (intentIsForStartingSession(intent)) {
CastContext castContext = CastContext.getSharedInstance(this);
castContext.getSessionManager().startSession(intent);
}
我已经做了很多研究,但是找不到任何解决方案。顺便说一下,这是python。
没有异常结果或错误消息,因为我不知道该怎么办。