android改造获取请求@Path错误

时间:2018-02-13 23:54:26

标签: android api get retrofit

当我通过改造实现请求时,我遇到了Android中GET请求的奇怪问题。

我实现了这个get请求方法,它运行正常。

此请求工作完美无缺

this get request work perfectly

然后我决定在需要时我需要在活动中动态更改它。

get request in interface

当我向这个方法传递相同的URL时,这就是它在活动中的样子

this is how it looks in activity

作为回报,我只收到错误,看起来像这样。

  

响应{protocol = http / 1.1,代码= 404,消息=未找到,   URL = https://api.github.com/repos%2Ftempestme%2Fandroid_dictophone%2Fcommits

我无法确定在哪里寻找问题。

1 个答案:

答案 0 :(得分:0)

刚刚发现了什么问题。 你不能用斜杠(/)传递url来获取方法,@ Path只能这样接收它。 enter image description here