- Related tutorial: http://raspberrypiguide.de/
- Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.tb24.fn.network; | |
| import com.google.gson.JsonObject; | |
| import com.tb24.fn.model.account.*; | |
| import retrofit2.Call; | |
| import retrofit2.http.*; | |
| import java.util.List; | |
| import java.util.Map; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <resources xmlns:tools="http://schemas.android.com/tools"> | |
| <string name="action_accept">Accept</string> | |
| <string name="action_add">Add</string> | |
| <string name="action_back">Back</string> | |
| <string name="action_close">Close</string> | |
| <string name="action_collect">Collect</string> | |
| <string name="action_confirm">Confirm</string> | |
| <string name="action_continue">Continue</string> | |
| <string name="action_decline">Decline</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // by joe/mix | |
| const request = require("request-promise"); | |
| module.exports = { | |
| /** | |
| * Login to an account. | |
| * @param {string} email | |
| * @param {string} password | |
| */ | |
| async authenticate(email, password) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Linq; | |
| using System.Net; | |
| using Newtonsoft.Json; | |
| using RestSharp; | |
| namespace FNFlowAuthNETCore | |
| { | |
| public class EpicFortniteAuthFlow | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public string getAuthFullFlow(string username, string password) | |
| { | |
| var cli1 = new RestClient("https://www.epicgames.com/id/api/csrf"); | |
| var req1 = new RestRequest(Method.GET); | |
| var ans1 = cli1.Execute(req1); | |
| var xsrftoken = ans1.Cookies.First(x => x.Name == "XSRF-TOKEN").Value; | |
| var cli2 = new RestClient("https://www.epicgames.com/id/api/login"); | |
| var req2 = new RestRequest(Method.POST); | |
| foreach (var i in ans1.Cookies) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Hope it help's to someone, my little giveaway. --> | |
| <!-- PHP WIDGET IN THE END OF HTML HOLDER--> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| <title>Sequence slider give away + BONUS :)</title> | |
| <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ruluko|Sirin+Stencil"> |
