この URL にパラメータを渡したいです。
https://graph.facebook.com/me?fields=music.fields(動画)
にパラメーターを渡すのは簡単https://graph.facebook.com/me?fields=music
です。このために、私は次のようなバンドルパラメーターを使用しています
Bundle bun = new Bundle();<br>
bun.putString("fields", "music");
music.fields(videos)
しかし、私は url にパラメーターを送信する適切な方法を見つけることができないセクションで立ち往生しました。
Bundle bun = new Bundle();
bun.putString("fields", "music");
bun.putString("music", "name");