How to use "inbox" feature?

This post was last updated for 504 days ago, and the information may already be changed

As a lifetime user, how do I use the Inbox feature? The instructions in the user guide are very superficial. It only talks about API, where to find it, but it doesn't show how to use it. Thank you.

    Welcome to here!

    Here we can learn from each other how to use SiYuan, give feedback and suggestions, and build SiYuan together.

    Signup About
    Please input reply content ...
    • DoctorJames
      VIP Warrior

      Love the software and the team works all the time but i really don´y understand the use of an inbox that doesn´t work.

      I would love to highlight pdf in my Siyuan for ipad, could be a game changer and transform the app in a multiple tool for work.

      Please more plugins in English, speccially for memos and pdf

      Thanks a lot

      1 Reply
    • MiscReply
    • Basti 2
      VIP Warrior

      Sending to the SiYuan-Inbox is quiet easy from a small script. I have an example for ruby here...

      You need to change "token xxx"

      require 'net/http'
      require 'json'
      
      uri = URI('https://liuyun.io/apis/siyuan/inbox/addCloudShorthand')
      req = Net::HTTP::Post.new(uri)
      req.body = JSON.dump({
        title: Time.now.strftime('%Y-%m-%d'),
        content: 'Hello from Ruby'
      })
      req['Content-Type'] = 'application/json'
      req['Authorization'] = 'token xxx'
      
      res = Net::HTTP.start(uri.hostname, uri.port, :use_ssl => true) do |http|
        http.request(req)
      end
      
      case res
      when Net::HTTPSuccess, Net::HTTPRedirection
        puts 'DONE'
      else
        puts 'FAILED'
        puts res.value
      end
      
    • DoctorJames
      VIP Warrior

      You are really nice but my level of knowledge si by far smaller, thanks a lot , what I need is for example how to set up reader app for example.

    • ACai

      In my opinion, the inbox API is used to forward some content when SiYuan is not enabled, and it can be seen when opened SiYuan in next time.

      For users who always opened SiYuan, you can just use the local API.😳

    • Visit all replies