In order to implement some of the official vk sdk api requests for android, you need the audio_id parameter. But in VKApiConst there is no such thing. Who knows how to convey it.?

    1 answer 1

    In the query, you can write "audio_id" instead of VKApiConst.AUDIO_ID - which is not. For example:

    VKRequest request = new VKRequest("audio.add", VKParameters.from("audio_id", "197010009", "owner_id", "6492")); 
    • The request parameters are not all, just wrote for an example) - strevg
    • Thank. It helped - user186301