weibo

UIActivityController behaviour different on device and simulator

安稳与你 提交于 2019-12-30 12:14:57
问题 I add an activityViewController to my app like below, passing in an image UIActivityViewController *avc = [[UIActivityViewController alloc]initWithActivityItems:[NSArray arrayWithObjects:img,nil] applicationActivities:[NSArray arrayWithObjects:nil]]; [self presentModalViewController:avc animated:YES]; [avc release]; On the simulator (twitter, facebook and weibo accounts all not configured): options mail, twitter, facebook, weibo, assign to contact, save to camera roll, print, and copy appear

UIActivityController behaviour different on device and simulator

纵然是瞬间 提交于 2019-12-30 12:14:33
问题 I add an activityViewController to my app like below, passing in an image UIActivityViewController *avc = [[UIActivityViewController alloc]initWithActivityItems:[NSArray arrayWithObjects:img,nil] applicationActivities:[NSArray arrayWithObjects:nil]]; [self presentModalViewController:avc animated:YES]; [avc release]; On the simulator (twitter, facebook and weibo accounts all not configured): options mail, twitter, facebook, weibo, assign to contact, save to camera roll, print, and copy appear

请你描述一下你心目中,直播间最完美的呈现方式,并说出具体功能,为它设计1至2种主播与用户之间的互动玩法。

£可爱£侵袭症+ 提交于 2019-12-22 21:06:18
结合AR的呈现方式。 具体功能: 1.观看直播的用户可以使用直播APP配套的AR设备,并结合APP的AR模式功能,进行沉浸式的直播观看体验。可以全方位看到主播,就像零距离接触一样。 2.直播APP开发一个虚拟主播的功能,用户可以自己选择二次元虚拟主播(例如初音未来)或者真人主播。虚拟主播不仅限于二次元范围,也可以是仿真人。虚拟主播的好处在于可以实时和每一个用户“对话”,能照顾到大部分用户的情绪。 玩法: 1.AR功能:通过AR设备和投影“实际”感受与主播“面对面”交流,甚至是牵手感受。 2.虚拟主播功能:用户可以通过自己的喜好,捏造虚拟主播,然后投影呈现。 ———————————————— 版权声明:本文为CSDN博主「青梅竹码」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。 https://weibo.com/ttarticle/p/show?id=2309404452341184069766 https://weibo.com/ttarticle/p/show?id=2309404452341192458585 https://weibo.com/ttarticle/p/show?id=2309404452341205041751 https://weibo.com/ttarticle/p/show?id

新浪微博 API 使用入门

こ雲淡風輕ζ 提交于 2019-12-21 11:37:14
1、注册新浪帐号 2、进行开发者认证 需要身份认证,等待了一天时间。提交身份认证后就可以使用了,不必等待认证通过。 3、创建APP 系统会为此应用分配一个APP KEY和APP SECRET,这两个字串非常重要,将会在以后认证或者信息交互时用到。 4、设置app的授权回调页 应用信息 - 高级信息 - OAuth2.0 授权设置,设置授权回调页。 如果没有自己的网站,可以把 redirecturl 设置为 https://api.weibo.com/oauth2/default.html ,程序中的 redirecturl 要与此一致。 如图: 如果没设置授权回调页地址,或者程序中的与此不一样,会出现如下错误: 访问出错了! 你所访问的站点在新浪微博的认证失败,请你联系gnocob或者稍后再试。 (error:redirect_uri_mismatch) 如图: 5、下载需要版本的 sdk http://open.weibo.com/wiki/SDK 6、查看可用 API http://open.weibo.com/wiki/API%E6%96%87%E6%A1%A3 我的应用可用的接口: http://open.weibo.com/apps/180341588/privilege 7、测试及其他 Python SDK 调用 API 测试如下: #encoding=utf-8

第四百零四节,python网站第三方登录,social-auth-app-django模块

自闭症网瘾萝莉.ら 提交于 2019-12-16 11:41:12
第四百零四节,python网站第三方登录,social-auth-app-django模块, social-auth-app-django模块是专门用于Django的第三方登录 OAuth2协议 模块 目前流行的第三方登录都采用了 OAuth2协议 安装 pip install -i https://pypi.douban.com/simple social-auth-app-django 依赖关系 PyJWT-1.5.3 certifi-2017.7.27.1 chardet-3.0.4 defusedxml-0.5.0 idna-2.6 oauthlib-2.0.4 python3-openid-3.1.0 requests-2.18.4 requests-oauthlib-0.8.0 six-1.11.0 social-auth-app-django-1.2.0 social-auth-core-1.4.0 urllib3-1.22 使用文档 http://coding.imooc.com/lesson/131.html#mid=7393 使用配置 1.将social_django添加到app配置,settings.py INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django

XPath, in a Greasemonkey script, is not selecting right nodes on an XHTML page

我们两清 提交于 2019-12-13 14:54:38
问题 I'm working on a Greasemonkey script for weibo.com . I can't pick the elements using XPath on the XHTML page. This code fails to grab the elements I want: function resolver(prefix) { return prefix === 'x' ? 'http://www.w3.org/1999/xhtml' : null; } var allLinks, thisLink; allLinks = document.evaluate( "//x:a[@href]", document, resolver, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null ); Only the <a> elements on the sidebar are picked and the rest are still there. Please refer to this, weibo.com

How to create a Tencent Weibo (qq) share button?

删除回忆录丶 提交于 2019-12-10 11:32:01
问题 I need to implement the equivalent of the Tweet button for the Chinese translation of a website, that is, not the "share on Weibo" button, which I already got (using the generator here), but a Tencent/QQ Weibo share button. What I've done so far: Subscribed to Weibo (reading the automatically Google-translated pages-I don't know Chinese) tried to go to the Q-Share page (here) but the next page asks me personal info that I don't have (e.g. a Chinese telephone number, mandatory) Are there

12-第三方登录

丶灬走出姿态 提交于 2019-12-06 14:12:21
一、第三方登录 1.1、第三方登录开发模式 首先注册第三方登录开发平台例如微博开放平台 1.2、oauth2.0获取微博的access_token apps/utils/weibo_longin.py def get_auth_url():#获取code参数 weibo_auth_url = 'https://api.weibo.com/oauth2/authorize' redirect_url = 'http://46.92.87.172.:8000/complete/weibo/' auth_url = weibo_auth_url+'?client_id={client_id}&redirect_uri={re_url}'.format(client_id=xxxxxxx,re_url=redirect_url) print(auth_url) def get_user_info(access_token='',uid=''): #根据微博API接口可以访问用户信息等 user_url = '' """ 可以利用这个接口爬取微博信息(爬虫思路) """ def get_access_token(code='xxxxxxxx'): #获取access_token参数 access_token_url = 'https://api.weibo.com/oauth2/access

由这个代理对象控制对该对象的访问

最后都变了- 提交于 2019-12-05 15:45:45
什么是代理模式 代理模式就是为一个对象提供一个代理对象,由这个代理对象控制对该对象的访问。 理解代理模式,可以对照生活中的一些具体例子,比如房产中介、二手车交易市场、经纪人等。 为什么要用代理模式 通过使用代理模式,我们避免了直接访问目标对象时可能带来的一些问题,比如:远程调用,需要使用远程代理来帮我们处理一些网络传输相关的细节逻辑;可能需要基于某种权限控制对目标资源的访问,可以使用保护代理等。 总的来说,通过是用代理模式,我们可以控制对目标对象的访问,可以在真实方法被调用前或调用后,通过代理对象加入额外的处理逻辑。 代理模式分类 代理模式分为静态代理和动态代理。动态代理根据实现不同又可细分为JDK动态代理和cglib动态代理。 静态代理 是由程序员创建或工具生成代理类的源码,再编译代理类。所谓静态也就是在程序运行前就已经存在代理类的字节码文件,代理类和委托类的关系在运行前就确定了。 动态代理 是在实现阶段不用关心代理类,而在运行时动态生成代理类的。 静态代理 以房哥买房子为例,用代码实现静态代理。 https://weibo.com/ttarticle/p/show?id=2309404442674693275995 https://weibo.com/ttarticle/p/show?id=2309404442674605195295 https://weibo.com

采用SparkSession对象

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-05 15:45:28
在Spark 2.x当中,实际上SQLContext和HiveContext是过时的,相反是采用SparkSession对象的sql函数来操作SQL语句的。使用这个函数执行SQL语句前需要先调用DataFrame的createOrReplaceTempView注册一个临时表,所以关键是先要将RDD转换成DataFrame。实际上,在Spark中实际声明了 type DataFrame = Dataset[Row] 所以,DataFrame是Dataset[Row]的别名。RDD是提供面向低层次的API,而DataFrame/Dataset提供面向高层次的API(适合于SQL等面向结构化数据的场合)。 下面提供一些Spark SQL程序的例子。 例子一:SparkSQLExam.scala https://weibo.com/ttarticle/p/show?id=2309404442671010676834 https://weibo.com/ttarticle/p/show?id=2309404442670872264752 https://weibo.com/ttarticle/p/show?id=2309404442670792573026 https://weibo.com/ttarticle/p/show?id=2309404442670654160901 https:/