Navigation

    • Register
    • Login
    • Search
    • Recent
    • Users
    • Groups
    1. Home
    2. prafful
    P

    prafful

    @prafful

    0
    Reputation
    23
    Posts
    10
    Profile views
    2
    Followers
    0
    Following
    Joined Last Online
    Email prafful@airasia.com

    • Profile
    • More
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups
    prafful Follow

    Best posts made by prafful

    This user does not have any upvoted posts yet.

    Latest posts made by prafful

    RE: Data Visualization with Data Studio (Now, Looker Studio)

    @amirah-diyana93 @luckyafif7 @uzairsahrin @suhaidsaupi @nuranistasnim98 @bukharinhy1119 Here you go....

    posted in Data Analytics •
    Data Visualization with Data Studio (Now, Looker Studio)

    Please share your dashboard public URL's

    posted in Data Analytics •
    RE: Open Discussion: I want to be software engineer?

    @kimtimber Have you signed up for full time software engineering 9 days course scheduled for March 2023?

    posted in Software Engineering •
    Open Discussion: I want to be software engineer?

    @jojoforce1993 @danielzylomc1234 @maisarasharif98 @syidaa132 @mhdhusaini1346 @sofiaazizan97 @sarahedlen99 @ceapkjxmxjcximw

    Can you share your views on these?

    • Why do you want to be the software engineer or developer or coder?
    • What role did Airasia Academy played in your journey to be the software engineer or developer or coder?
    • What do you expect to learn in near future to fulfil your dream of becoming software engineer or developer or coder?

    Let's communicate....

    posted in Software Engineering •
    Visualizing React Components

    @jojoforce1993 @danielzylomc1234 @maisarasharif98 @syidaa132 @mhdhusaini1346 @sofiaazizan97 @sarahedlen99 @ceapkjxmxjcximw

    Please post your component visualizations here!

    posted in Software Engineering •
    RE: React.JS Batch 6 All Stars

    @prafful alt text

    Front end: https://codeisveryeasy.github.io/
    Backend: https://lazy-blue-scal*****.*****.app
    Database: Mongo DB Cloud

    posted in Software Engineering •
    React.JS Batch 6 All Stars

    Please post your mini full stack app

    posted in Software Engineering •
    RE: React-Laravel-JWT auth

    @asaifulas

    Looks like you wish to send authorization token and request body (data) both with the request. 2 or 3 ways to do it. Any one can be used

    1. axios interceptors
      ->https://github.com/axios/axios#interceptors
    2. axios headers -> https://github.com/axios/axios#global-axios-defaults
      ->axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
    3. setting the token explicitly on every request using config argument
      ->
    const config = {
      headers:{
        headera: valuea,
        headerb: valueb
      }
    };
    const url = "api end point";
    
    const data ={
      name: "Prafful Daga",
      email: "prafful@airasia.com"
    }
    

    Next,

    axios.get(url, config)
      .then(res=> console.log(res))
      .catch(err=> console.log(err))
    

    OR

    axios.post(url, data, config)
      .then(res => console.log(res))
      .catch(err => console.log(err))
    

    Pl. see if this helps!

    posted in Software Engineering •
    RE: React.JS (The JavaScript Library)

    @sitizakiahrahimah Nice work

    posted in Software Engineering •
    RE: React.JS (The JavaScript Library)

    @zirah-kongid Nice work!

    posted in Software Engineering •