Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. We have updated the language to the Editor Terms based on feedback from our employees and community. Learn more.
    Dismiss Notice

Links posted by Slack integration leads to 404 page

Discussion in 'Unity Cloud Diagnostics' started by Maxwell-SC, Apr 20, 2020.

  1. Maxwell-SC

    Maxwell-SC

    Joined:
    Jun 7, 2019
    Posts:
    7
    Currently every link Slack integration posts leads to 404 page.

    The link itself looks like:
    https://developer.cloud.unity3d.com/diagnostics/orgs/{org_id}/projects/{proj_id}/crashes/{crash_id}/

    On the other hand when I access the same crash via dashboard the link looks like:
    https://developer.cloud.unity3d.com/diagnostics/orgs/{org_id}/projects/{proj_id}/crashes/{crash_id}/filters/{base64}/

    So I suppose it needs to provide some kind of filter information.

    Looks like it related with issue below:
    https://forum.unity.com/threads/solved-slack-integration-broken.806388/
     
  2. StartStart

    StartStart

    Joined:
    Jan 2, 2013
    Posts:
    150
    I found this issue too. Even I go to diagnostics pages by manually tap from services home page.
     
  3. Ryan-Unity

    Ryan-Unity

    Unity Technologies

    Joined:
    Mar 23, 2016
    Posts:
    1,993
    Hi @Maxwell-SC and @StartStart, the Dashboard team has been made aware of this bug and is currently looking into it. I'm sorry for the inconvenience and we should have a fix out soon.
     
    StartStart likes this.
  4. tkg_dbowen

    tkg_dbowen

    Joined:
    Feb 5, 2019
    Posts:
    1
    We're seeing this to.

    If you logon to Cloud Diagnostics from the Unity3d.com dashboard you can see all the reports correctly.

    The URLs in slack are almost correct, but when accessed via the web UI I notice they have an extra filter property at the end of the URL. This filter param appears to be a base64 encoded json string, so I worked out you could just pass an empty json array to it to make it work.

    If you have a link like this:
    https://developer.cloud.unity3d.com....../crashes/fec48bb0bacdd3e71c5add3bb3b10869/
    which results in a 404

    Just add this to the end of the URL
    filters/W10=/

    and it will work.