WordsAPI

फ्रीमियम
Verified
द्वारा dpventures | अपडेट किया गया 14 days ago | Data
लोकप्रियता

9.9 / 10

लेटेंसी

191ms

सेवा का स्तर

100%

Health Check

N/A

सभी चर्चाओं पर वापस जाएं

retrofit return 404 code while postman get 200

Rapid account: Allhebra
Allhebra
4 years ago

I use this code:
@Headers(
"x-rapidapi-key:my-key; " +
"x-rapidapi-host:wordsapiv1.p.rapidapi.com; " +
“Content-Type:application/json”
)
@GET(“words/{target}”)
fun getWord(
@Path(“target”) target: String?
): Observable<Result<Any>?>

fun create(): WordsApiService {
val retrofit = Retrofit.Builder()
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create())
.baseUrl(“https://rapidapi.p.rapidapi.com/”)
.build()
return retrofit.create(WordsApiService::class.java)
}

and get error: retrofit2.adapter.rxjava2.HttpException: HTTP 404 Not Found
but when I use postman I get response with 200 code.
Is there anybody who get success response with retrofit?

चर्चा में शामिल हों - नीचे टिप्पणी जोड़ें:

नई टिप्पणियाँ पोस्ट करने के लिए लॉग इन / साइनअप करें