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.
How to use "inbox" feature?
This post was last updated for 812 days ago, and the information may already be changed
Related articles
-
zxhd86 •
In China, an example has been developed to connect to WeChat, which allows you to send messages to SiYuan in the form of conversations.
I think Telegram and WhatsApp should be able to do something similar, but there is no doing yet.
- MiscReply
-
DoctorJames •VIP Warrior
I am just begining in Siyuan, by far fullfill my need but the inbox is really an obscur item also the use of the API key, is it possible to have a step by step use of it?
Kindly and thanks
-
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.
-
Basti • • 3VIP 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
Welcome to here!
Here we can learn from each other how to use SiYuan, give feedback and suggestions, and build SiYuan together.
Signup About