GithubHelp home page GithubHelp logo

Comments (4)

Finb avatar Finb commented on May 26, 2024

需要给参数URL编码,否则如果参数中包含 / 会破坏URL结构

例如

//给参数URL编码一下就行(各语言有不同的URL编码方法,方法名可能不一样)。
var url:String = "https://api.day.app/yourkey/" + "home/test".encodeURIComponent();   

//最后URL长这样
printf(url);  //https://api.day.app/yourkey/home%2ftest/

// 如果不编码则会产生歧义
// https://api.day.app/yourkey/home/test/
// 服务器会以为你请求的是 https://api.day.app/yourkey/{title}/{body}/  
// 自然就会分两行显示了,一行粗体title ,一行常规字体body

from bark-server.

asdfvv avatar asdfvv commented on May 26, 2024

谢谢大佬解答,不过我是小白一个。
是不是要在哪加个参数?我用docker搭建的

from bark-server.

Finb avatar Finb commented on May 26, 2024

服务端是正常的,是因为你拼的请求URL本身有问题,你可以去查一些 URL编码 相关的文章看一看

或者
你不用把参数拼在URL路径里,用下面的格式去发推送
https://api.day.app/yourkey/?body={你要推送的内容}

from bark-server.

asdfvv avatar asdfvv commented on May 26, 2024

好的,谢谢大佬。我在去试试

from bark-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.