unity Game Center iOS 认证失败social.authenticate

2024-02-19 02:59

本文主要是介绍unity Game Center iOS 认证失败social.authenticate,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

avatar image
0
个问题,截止 Bieere · 2014年09月18日 19:40 ·  game center

UnityEngine.Social not working with IOS 8. Unsure how to resolve the issue.

When running our game on any device that uses game center we get an error that is related to specifically the authentication/connection from the game to Game Center. Now this works on IOS 7 versions, just not with IOS 8.

We get this return from the authentication attempt,

Failed to authenticate local user The requested operation could not be completed because this application is not recognized by Game Centre.

Has anyone encountered this issue/problem? is this a unity related issue, or something from xCode and/or Apple and Game Centre?

Built from xCode v6.0.1, to IOS 8.

EDIT: I've noticed that it seems to be an issue directly with UnityEngine.Social, as the social.authenticate seems to be the root of the issue.

评论 ·   隐藏 1
avatar image tilikum  · 2014年09月23日 13:32  0

Same problem here. I also tried with Stan's iOS Native Plugin, but had the same error. 

1条回复

 ·  添加您的回复
<div id="answer-container-796690" class="post-container answer-container clearfix accepted-answer" "="" nodeid="796690" style="clear: both; position: relative; margin-bottom: 12px;">
avatar image
2
最佳解答

个解答,截止tilikum  

OK I figured it out. iPhone Settings/Game Center tab has a new checkbox called sandbox in iOS 8. It should be checked to test Game Center. 



评论
·   隐藏 2 ·  分享
avatar image Bieere  · 2014年09月24日 14:15  1

This worked perfect, thank you so much!

Also i was confused for a second, and anyone else who might be while looking, he means in the Settings Menu on the IOS device so Settings->Game Center Tab, scroll to the bottom and there's a switch 

avatar image HenryStrattonFW  · 2015年11月13日 18:39  0

Just ran into this myself as well, worth noting as well that for us, the "sandbox" option is only available when the testflight app is installed on the device.


这篇关于unity Game Center iOS 认证失败social.authenticate的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/723305

相关文章

Springboot项目启动失败提示找不到dao类的解决

《Springboot项目启动失败提示找不到dao类的解决》SpringBoot启动失败,因ProductServiceImpl未正确注入ProductDao,原因:Dao未注册为Bean,解决:在启... 目录错误描述原因解决方法总结***************************APPLICA编

最新Spring Security的基于内存用户认证方式

《最新SpringSecurity的基于内存用户认证方式》本文讲解SpringSecurity内存认证配置,适用于开发、测试等场景,通过代码创建用户及权限管理,支持密码加密,虽简单但不持久化,生产环... 目录1. 前言2. 因何选择内存认证?3. 基础配置实战❶ 创建Spring Security配置文件

SpringBoot整合Dubbo+ZK注册失败的坑及解决

《SpringBoot整合Dubbo+ZK注册失败的坑及解决》使用Dubbo框架时,需在公共pom添加依赖,启动类加@EnableDubbo,实现类用@DubboService替代@Service,配... 目录1.先看下公共的pom(maven创建的pom工程)2.启动类上加@EnableDubbo3.实

CSS place-items: center解析与用法详解

《CSSplace-items:center解析与用法详解》place-items:center;是一个强大的CSS简写属性,用于同时控制网格(Grid)和弹性盒(Flexbox)... place-items: center; 是一个强大的 css 简写属性,用于同时控制 网格(Grid) 和 弹性盒(F

Android与iOS设备MAC地址生成原理及Java实现详解

《Android与iOS设备MAC地址生成原理及Java实现详解》在无线网络通信中,MAC(MediaAccessControl)地址是设备的唯一网络标识符,本文主要介绍了Android与iOS设备M... 目录引言1. MAC地址基础1.1 MAC地址的组成1.2 MAC地址的分类2. android与I

Spring Security自定义身份认证的实现方法

《SpringSecurity自定义身份认证的实现方法》:本文主要介绍SpringSecurity自定义身份认证的实现方法,下面对SpringSecurity的这三种自定义身份认证进行详细讲解,... 目录1.内存身份认证(1)创建配置类(2)验证内存身份认证2.JDBC身份认证(1)数据准备 (2)配置依

SpringSecurity JWT基于令牌的无状态认证实现

《SpringSecurityJWT基于令牌的无状态认证实现》SpringSecurity中实现基于JWT的无状态认证是一种常见的做法,本文就来介绍一下SpringSecurityJWT基于令牌的无... 目录引言一、JWT基本原理与结构二、Spring Security JWT依赖配置三、JWT令牌生成与

Pyserial设置缓冲区大小失败的问题解决

《Pyserial设置缓冲区大小失败的问题解决》本文主要介绍了Pyserial设置缓冲区大小失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面... 目录问题描述原因分析解决方案问题描述使用set_buffer_size()设置缓冲区大小后,buf

SpringSecurity6.0 如何通过JWTtoken进行认证授权

《SpringSecurity6.0如何通过JWTtoken进行认证授权》:本文主要介绍SpringSecurity6.0通过JWTtoken进行认证授权的过程,本文给大家介绍的非常详细,感兴趣... 目录项目依赖认证UserDetailService生成JWT token权限控制小结之前写过一个文章,从S

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一