Backend error 400

Hello , Backend error 400

I downloaded the java example, where rms-world-check-one-api-pilot.thomsonreuters.com is modified to api-worldcheck.refinitiv.com and change V1 to v2


Here are my code and specific parameters


-6f769583c43776fe.jpg


1a7ead7b25ad7d81.png

How to solve it

Best Answer

  • Mehran Khan
    Answer ✓

    @zhaofanfanzz

    is the date hardcoded? if it is it shouldn't be, it should be passed in the below format

    Date now = new Date();


                    //format for date string Mon, 27 Mar 2017 15:19:36 GMT 
                    DateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z");
                    df.setTimeZone(TimeZone.getTimeZone("GMT+3"));


                    String date = df.format(now);

    Can you send me the code via email to mehran.ahmedkhan@refinitiv.com? and also let me know your availability for tomorrow? we can jump on a quick meeting and get this resolved.

Answers