Where are Postman collections saved?

前端 未结 6 632
伪装坚强ぢ
伪装坚强ぢ 2020-12-13 01:44

Where does the standalone Postman client for Windows save collections when working offline?

To clarify, I want to find where Postman saves collection files to by def

相关标签:
6条回答
  • 2020-12-13 01:57

    Win10: You have to back up your old Postman C:\Users%user%\AppData\Roaming\Postman\IndexedDB Then copy it to the same location of the new Postman installation.

    This will recover all your collections.

    0 讨论(0)
  • 2020-12-13 02:03

    Linux Chrome or Chromium Postman extension storage path Location

    /home/{USER}/.config/chromium/Default/Storage/ext/fhbjgbiflinjbdggehcddcbncffffdomop/

    Thanks.

    0 讨论(0)
  • 2020-12-13 02:05

    It looks like Postman uses LevelDB. On Windows, I found my Postman DB located at:

    C:\Users\xxxx\AppData\Roaming\Postman\IndexedDB\
    

    According to Piere F, macOS users can find it under:

    ~/Library/Application Support/Postman/IndexedDB
    

    According to David, Ubuntu users can find it under:

    ~/.config/Postman/IndexedDB
    
    0 讨论(0)
  • 2020-12-13 02:06

    Alternatively, if you just want to look at the collection, you can export it into json format from the collection menu.

    0 讨论(0)
  • 2020-12-13 02:20

    For the version Postman from Google Chrome extension, you need copy all files from path:

    "%LOCALAPPDATA%\Google\Chrome\User Data\Default\Storage\ext\fhbjgbiflinjbdggehcddcbncffffdomop\def\IndexedDB\chrome-extension_..."

    The files inside path above contains all history and collections from Postman

    0 讨论(0)
  • 2020-12-13 02:23

    Postman is using Chromium offline storage capabilities because at the end it's a SPA running inside Chromium (Electron technology).

    From Postman's top menubar:

    • Select View → Show Dev Tools
    • Select the Application tab
    • In the sidebar, open Storage → IndexedDB → postman - file:// → collection_requests
    0 讨论(0)
提交回复
热议问题