How to use "inbox" feature?

This post was last updated for 374 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 ...
    • nihilentropy

      The https://liuyun.io/ endpoint does not seem to function on iOS. Is there a equivalent 127.0.0.1 endpoint for addCloudShorthand?

    • MiscReply
    • Basti
      VIP Warrior

      I think I had to allow Shortcuts to send to a website. However I get messages to the Inbox from the iPhone. Also note, that it only takes Text-Messages. Sharing other data will not work.

      Did you change the token? It is silently failing for me with the wrong token.

      The Shortcut is very limited. For debugging you could change the Shortcut to show the results. Which gives you an indication of what might be wrong. But this is my first Shortcut ever created, so no idea if something is wrong...

    • 88250

      There should be no connected program at present (as far as I know). This requires third-party applications to be developed and connected.

    • Basti 1
      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
      
    • Visit all replies