3

我无法在哨兵仪表板中显示我的原始代码。

我收到以下错误

Discarded invalid parameter 'type'

Source code was not found for app:///crna-entry.delta? 
platform=ios&dev=true&minify=false`

我已经app.json按照文档中的说明进行了配置。

"hooks": {
  "postPublish": [
    {
      "file": "sentry-expo/upload-sourcemaps",
      "config": {
        "organization": "xxxxx",
        "project": "xxxxxxx",
        "authToken": "xxxxxxxxxx"
      }
    }
  ]
}
4

1 回答 1

0

我在这里回答了这个问题

第一种方式

如果您使用博览会。你应该使用sentry-expo你可以在这里找到的包:sentry-expo

把这个钩子放到你的expo json (app.json)文件中

{
  "expo": {
    "hooks": {
      "postPublish": [
        {
          "file": "sentry-expo/upload-sourcemaps",
          "config": {
            "organization": "<your organization name>",
            "project": "<your project name>",
            "authToken": "<your auth token here>"
          }
        }
      ]
    }
}

  1. organization你可以在这里找到 名为“组织名称”的https://sentry.io/settings/
  2. project输入你的项目名称,你可以在这里找到: https ://sentry.io/organizations/ORGANIZATION_NAME/projects/
  3. authToken使用此 url https://sentry.io/api/创建一个 authToken

然后运行expo publish,它会自动上传源地图。

本地测试

确保您启用了博览会开发。添加行;

Sentry.enableInExpoDevelopment = true;
Sentry.config(publicDsn, options).install();

因此

在哨兵上,只有 ios,您可以看到发生错误的源代码。 在此处输入图像描述

但是:无法查看 ANDROID 的源代码

https://github.com/getsentry/react-native-sentry/issues/372

第二种方式(手动上传)

使用 API https://docs.sentry.io/platforms/javascript/sourcemaps/

curl -X POST \
  https://sentry.io/api/0/organizations/ORG_NAME/releases/VERSION/files/ \
  -H 'Authorization: Bearer AUTH_TOKEN' \
  -H 'content-type: multipart/form-data' \
  -F file=@script.min.js.map \
  -F 'name=~/scripts/script.min.js.map'
于 2019-05-16T06:56:45.820 回答