0

我正在尝试在我的 android 项目中使用 ImageKit。

val res = imageRenderAPI.doInit(sourcePath, getAuthJson())

每当我像上面的代码一样调用 doInit 方法时,它总是抛出错误代码35 ,根据文档将其转换为 ERROR_DOINIT 。

我的 XML 文件如下:

<?xml version="1.0" encoding="utf-8"?>
<Root screenWidth="1080">
  <Image x="1080" y="1920" src="background.png"></Image> 
  <Image w="481" h="432"  x="481" y="120" pivotX="500" pivotY="80" rotationX="50" rotationY="50" src="human.png" > 
    <PositionAnimation> 
        <Position x="0" y="0" time="0"/> 
        <Position x="500" y="0" time="1000"/> 
    </PositionAnimation>    
    <RotationAnimation >       
        <Rotation angle="0" time="0"/>        
        <Rotation angle="360" time="6000"/>     
    </RotationAnimation>
</Image>
</Root>

关于 authJson 的参数,我完全按照我从我的 app/agconnect-services.json 中获得的 appId、authApiKey、clientSecret 和 clientId 的内容,除了我不确定要输入什么值的项目 id,我已经尝试使用 agconnect-services.json 中的 cp_id 和 product_id 作为 projectId,也给出了相同的错误。而且我在这里不使用任何令牌,因为文档Image Kit Documentation说令牌是可选的。我无法弄清楚哪一部分是错误的,感谢您的帮助。

4

1 回答 1

1

您是否初始化了图像渲染服务?

初始化服务时,您的应用需要传递sourcePath(要解析的资源的路径)和认证信息(例如APIKey和证书指纹,JSON格式)。您的应用只有在成功通过身份验证后才能使用该服务。

您收到错误代码35,描述为:官方文档中的初始化错误。该问题的官方解决方案是:

检查输入的资源路径是否正确。

有关 Image Kit 相关错误的列表及其含义,这里是文档:文档

于 2020-08-06T10:42:07.910 回答