Search code examples
postmansnap

Postman Invalid characters in native dialog on Snap


I have postman desktop issue, when trying to export a collection. How can i fix it?

Distributor ID: Ubuntu
Description:    Ubuntu 23.10
Release:    23.10
Codename:   mantic

snap    2.60.4+23.10.1
snapd   2.60.4+23.10.1
series  16
ubuntu  23.10
kernel  6.5.0-14-generic

enter image description here

enter image description here


Solution

  • If you have postman installed via snap:

    snap remove postman
    

    Then follow the instructions on this link: https://gist.github.com/prrao87/114933c4638a4f77aa3d4b2c5a3b2477

    Goal

    snap. On recent distributions of Linux Mint (20 and above), snap installs are no longer possible. The instructions below show how to install Postman via the terminal.

    Download Postman

    $ wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz

    Extract archive

    $ sudo tar -xzf postman.tar.gz -C /opt

    Make symlink

    $ sudo ln -s /opt/Postman/Postman /usr/bin/postman

    Optional: Remove downloaded file

    $ rm postman.tar.gz

    Make Desktop icon

    $ sudo vim /usr/share/applications/postman.desktop

    Icon=/opt/Postman/app/resources/app/assets/icon.png
    Exec="/opt/Postman/Postman"
    Comment=Postman Desktop App
    Categories=Development;Code;
    

    Postman is a usefull app to build and test APIs, most commonly installed on ubuntu-like systems via

    enter image description here