Fortnite API jquery parse





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















i want to show the fortnite daily shop on my website..
an im using the following api: https://fortnite-public-api.theapinetwork.com/prod09/store/get



my request is :



<Script>
$(document).ready(function() {

var form = new FormData();
form.append("language", "en");

var settings = {
"async": true,
"crossDomain": true,
"url": "https://fortnite-public-api.theapinetwork.com/prod09/store/get",
"method": "POST",
"headers": {
"Authorization": "my key..."
},
"processData": false,
"contentType": "false",
"mimeType": "multipart/form-data",
"data": form
}

$.ajax(settings).done(function (response) {
console.log(response);
var json = $.parseJSON(response);
$(json).each(function(i,val){
$.each(val,function(k,v){

console.log(k+" : "+ v);
for (var i=0;i<json.length;++i)
{
$('json').append('<div class="name">'+json[i].name+'</>');
}

});
$('#json').html(json);

});
});
});
</Script>


i see the api datas in my console, but cant show in frontend.
the last 2 rows are just try and error, still cant append the data on my html page...



the whole code needs to be jquery, cant use php on my site...










share|improve this question


















  • 2





    You should't place "Authorization": "my key..." in the frontend side of the app

    – Ariel Alvarado
    Nov 22 '18 at 13:16











  • ohhh, you´re right, thanks...

    – crom
    Nov 22 '18 at 13:18


















0















i want to show the fortnite daily shop on my website..
an im using the following api: https://fortnite-public-api.theapinetwork.com/prod09/store/get



my request is :



<Script>
$(document).ready(function() {

var form = new FormData();
form.append("language", "en");

var settings = {
"async": true,
"crossDomain": true,
"url": "https://fortnite-public-api.theapinetwork.com/prod09/store/get",
"method": "POST",
"headers": {
"Authorization": "my key..."
},
"processData": false,
"contentType": "false",
"mimeType": "multipart/form-data",
"data": form
}

$.ajax(settings).done(function (response) {
console.log(response);
var json = $.parseJSON(response);
$(json).each(function(i,val){
$.each(val,function(k,v){

console.log(k+" : "+ v);
for (var i=0;i<json.length;++i)
{
$('json').append('<div class="name">'+json[i].name+'</>');
}

});
$('#json').html(json);

});
});
});
</Script>


i see the api datas in my console, but cant show in frontend.
the last 2 rows are just try and error, still cant append the data on my html page...



the whole code needs to be jquery, cant use php on my site...










share|improve this question


















  • 2





    You should't place "Authorization": "my key..." in the frontend side of the app

    – Ariel Alvarado
    Nov 22 '18 at 13:16











  • ohhh, you´re right, thanks...

    – crom
    Nov 22 '18 at 13:18














0












0








0








i want to show the fortnite daily shop on my website..
an im using the following api: https://fortnite-public-api.theapinetwork.com/prod09/store/get



my request is :



<Script>
$(document).ready(function() {

var form = new FormData();
form.append("language", "en");

var settings = {
"async": true,
"crossDomain": true,
"url": "https://fortnite-public-api.theapinetwork.com/prod09/store/get",
"method": "POST",
"headers": {
"Authorization": "my key..."
},
"processData": false,
"contentType": "false",
"mimeType": "multipart/form-data",
"data": form
}

$.ajax(settings).done(function (response) {
console.log(response);
var json = $.parseJSON(response);
$(json).each(function(i,val){
$.each(val,function(k,v){

console.log(k+" : "+ v);
for (var i=0;i<json.length;++i)
{
$('json').append('<div class="name">'+json[i].name+'</>');
}

});
$('#json').html(json);

});
});
});
</Script>


i see the api datas in my console, but cant show in frontend.
the last 2 rows are just try and error, still cant append the data on my html page...



the whole code needs to be jquery, cant use php on my site...










share|improve this question














i want to show the fortnite daily shop on my website..
an im using the following api: https://fortnite-public-api.theapinetwork.com/prod09/store/get



my request is :



<Script>
$(document).ready(function() {

var form = new FormData();
form.append("language", "en");

var settings = {
"async": true,
"crossDomain": true,
"url": "https://fortnite-public-api.theapinetwork.com/prod09/store/get",
"method": "POST",
"headers": {
"Authorization": "my key..."
},
"processData": false,
"contentType": "false",
"mimeType": "multipart/form-data",
"data": form
}

$.ajax(settings).done(function (response) {
console.log(response);
var json = $.parseJSON(response);
$(json).each(function(i,val){
$.each(val,function(k,v){

console.log(k+" : "+ v);
for (var i=0;i<json.length;++i)
{
$('json').append('<div class="name">'+json[i].name+'</>');
}

});
$('#json').html(json);

});
});
});
</Script>


i see the api datas in my console, but cant show in frontend.
the last 2 rows are just try and error, still cant append the data on my html page...



the whole code needs to be jquery, cant use php on my site...







javascript jquery json api






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 '18 at 13:13









cromcrom

1




1








  • 2





    You should't place "Authorization": "my key..." in the frontend side of the app

    – Ariel Alvarado
    Nov 22 '18 at 13:16











  • ohhh, you´re right, thanks...

    – crom
    Nov 22 '18 at 13:18














  • 2





    You should't place "Authorization": "my key..." in the frontend side of the app

    – Ariel Alvarado
    Nov 22 '18 at 13:16











  • ohhh, you´re right, thanks...

    – crom
    Nov 22 '18 at 13:18








2




2





You should't place "Authorization": "my key..." in the frontend side of the app

– Ariel Alvarado
Nov 22 '18 at 13:16





You should't place "Authorization": "my key..." in the frontend side of the app

– Ariel Alvarado
Nov 22 '18 at 13:16













ohhh, you´re right, thanks...

– crom
Nov 22 '18 at 13:18





ohhh, you´re right, thanks...

– crom
Nov 22 '18 at 13:18












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431832%2ffortnite-api-jquery-parse%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431832%2ffortnite-api-jquery-parse%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to change which sound is reproduced for terminal bell?

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Can I use Tabulator js library in my java Spring + Thymeleaf project?