smallufo
smallufo
Not related to android. I want to use kotlinx-datetime in wicket. But all wicket models mandate Serializable interface, otherwise NotSerializableException will be thrown.
Hi , is this issue really solved ? I try to fire an DELETE request (with body) to FB's API , but it seems it dosen't work. (version 1.15.0) sample...
I am using Fuel 1.15.0 , with FB's graph version `v3.2` BTW , I don't think your code works , because it's not a valid page_access_token. If it passes access...
Wow , I don't know Fuel has `curlString` function , great. This is my result : `curl -i -X DELETE -d "{\"fields\": [\"persistent_menu\"]}" -H "Accept-Encoding:compress;q=0.5, gzip;q=1.0" -H "Content-Type:application/json" https://graph.facebook.com/v3.2/me/messenger_profile?access_token=EAAGpXXX` ...
Sorry , isn't it what I have already done ? val (req: Request, res: Response, result: Result) = Fuel.delete(uri) .header(mapOf("Content-Type" to "application/json")) .body(json) .responseString() logger.info("curlString = {}" , req.cUrlString()) logger.info("req...
I try to remove the `Accept-Encoding` header , val (req: Request, res: Response, result: Result) = Fuel.delete(uri).also { it.headers.remove("Accept-Encoding") } .header(mapOf("Content-Type" to "application/json")) .body(json) .responseString() logger.info("curlString = {}" , req.cUrlString())...
Yes , I meant the generated JS. I just run some demo and saw the source containing these JS in the header . I think it is not good for...
I encountered the same problem even annotate one record's field @Nullable (`org.jetbrains.annotations.Nullable`) Mockito 5.7.0 After removing the annotation , every tests pass.
BTW , it seems AWS_REGION , AWS_ACCESS_KEY_ID , AWS_SECRET_ACCESS_KEY is not sufficient. I set 3 values , and I see error message : ``` 2023-06-11 18:22:52.407 [http-nio-8080-exec-1] WARN c.a.i.InstanceMetadataServiceResourceFetcher -...