galaxyoyo.com => ynerant.fr

This commit is contained in:
Yohann D'ANELLO 2019-12-03 13:48:37 +01:00
parent 1e186f1944
commit 414078e581
3 changed files with 5 additions and 3 deletions

View File

@ -268,7 +268,7 @@ public class Game {
@Override
public void run() {
try {
URL url = new URL("http://ynerant.fr/tarot/game.php");
URL url = new URL("https://ynerant.fr/tarot/game.php");
final HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", PreferenceManager.getDefaultSharedPreferences(MainActivity.INSTANCE).getString("token", null));

View File

@ -9,6 +9,8 @@ import androidx.annotation.NonNull;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import org.apache.commons.io.IOUtils;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
@ -65,7 +67,7 @@ public class Player {
@Override
public void run() {
try {
URL url = new URL("http://ynerant.fr/tarot/player.php");
URL url = new URL("https://ynerant.fr/tarot/player.php");
final HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", PreferenceManager.getDefaultSharedPreferences(MainActivity.INSTANCE).getString("token", null));

View File

@ -63,7 +63,7 @@ public class HomeFragment extends Fragment {
public void run() {
try {
Looper.prepare();
URL url = new URL("http://ynerant.fr/tarot/check_token.php");
URL url = new URL("https://ynerant.fr/tarot/check_token.php");
final HttpURLConnection co = (HttpURLConnection) url.openConnection();
co.setRequestMethod("POST");
co.setRequestProperty("token", token.getText().toString());