How can I send a JWT to a React application and store it after completing SAML authentication?

Currently, I generate a JWT from the SAML response, store it in the JwtResponse DTO, and send it to the frontend as part of the response, along with a redirect URL in the header indicating where the user should be redirected after authentication. However, after authentication, the JwtResponse is visible in the response of the URL (http://localhost:8080/login/saml2/sso/okta).

What I want instead is to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use.How can I do that? I cannot sent the jwt in url query parameter. Kindly ignore that method (and also ignore usage of session cookies) and suggest any other method.

This is what i have tried:

@PostMapping("/auth")
    public ResponseEntity<JwtResponse> handleSAMLLogin(Authentication      authentication) {
            Saml2AuthenticatedPrincipal principal = (Saml2AuthenticatedPrincipal) authentication.getPrincipal();

        Map<String, Object> claims = new HashMap<>();
        principal.getAttributes().forEach((key, value) -> {
            claims.put(key, value.get(0));
        });

        JwtResponse jwtResponse = new JwtResponse(
                samlAuthenticationSuccessHandler.generateSamlJWTToken(principal, claims)
        );

        return ResponseEntity
                .ok()
                .header("X-Redirect-URL", "/home")
                .body(jwtResponse);
    }
}

This is my frontend code which is not saving the response in the localStorage:

import axios from "axios";

export const initiateAuth = () => {
  window.location.href = "http://localhost:8080/saml2/authenticate/okta";
}; 

export const handleAuthCallback = async () => {
  try {
    const response = await axios.get(
      "http://localhost:8080/login/saml2/sso/okta",
      {
        headers: {
          Accept: "application/json",
        },
      }
     );

    const { accessToken, tokenType } = response.data;

    if (accessToken) {
      localStorage.setItem("token", `${tokenType} ${accessToken}`);

      localStorage.setItem("expiresIn", response.data.expiresIn);

      axios.defaults.headers.common[
        "Authorization"
      ] = `${tokenType} ${accessToken}`;

      return true;
    }

    return false;
   } catch (error) {
    console.error("Failed to handle authentication callback", error);
    return false;
   }
};

export const isAuthenticated = () => {
  const token = localStorage.getItem("token");
  return !!token;
};

export const getToken = () => {
   return localStorage.getItem("token");
};

export const logout = () => {
  localStorage.removeItem("token");
  localStorage.removeItem("expiresIn");
   delete axios.defaults.headers.common["Authorization"];
};

axios.interceptors.request.use(
   (config) => {
    const token = getToken();
    if (token) {
      config.headers.Authorization = token; 
        }
        return config;
      },
      (error) => {
        return Promise.reject(error);
      }
    );

I am expecting to to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use. How can I do that?

New contributor

Sanjana MV is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

How can I send a JWT to a React application and store it after completing SAML authentication?

Currently, I generate a JWT from the SAML response, store it in the JwtResponse DTO, and send it to the frontend as part of the response, along with a redirect URL in the header indicating where the user should be redirected after authentication. However, after authentication, the JwtResponse is visible in the response of the URL (http://localhost:8080/login/saml2/sso/okta).

What I want instead is to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use.How can I do that? I cannot sent the jwt in url query parameter. Kindly ignore that method (and also ignore usage of session cookies) and suggest any other method.

This is what i have tried:

@PostMapping("/auth")
    public ResponseEntity<JwtResponse> handleSAMLLogin(Authentication      authentication) {
            Saml2AuthenticatedPrincipal principal = (Saml2AuthenticatedPrincipal) authentication.getPrincipal();

        Map<String, Object> claims = new HashMap<>();
        principal.getAttributes().forEach((key, value) -> {
            claims.put(key, value.get(0));
        });

        JwtResponse jwtResponse = new JwtResponse(
                samlAuthenticationSuccessHandler.generateSamlJWTToken(principal, claims)
        );

        return ResponseEntity
                .ok()
                .header("X-Redirect-URL", "/home")
                .body(jwtResponse);
    }
}

This is my frontend code which is not saving the response in the localStorage:

import axios from "axios";

export const initiateAuth = () => {
  window.location.href = "http://localhost:8080/saml2/authenticate/okta";
}; 

export const handleAuthCallback = async () => {
  try {
    const response = await axios.get(
      "http://localhost:8080/login/saml2/sso/okta",
      {
        headers: {
          Accept: "application/json",
        },
      }
     );

    const { accessToken, tokenType } = response.data;

    if (accessToken) {
      localStorage.setItem("token", `${tokenType} ${accessToken}`);

      localStorage.setItem("expiresIn", response.data.expiresIn);

      axios.defaults.headers.common[
        "Authorization"
      ] = `${tokenType} ${accessToken}`;

      return true;
    }

    return false;
   } catch (error) {
    console.error("Failed to handle authentication callback", error);
    return false;
   }
};

export const isAuthenticated = () => {
  const token = localStorage.getItem("token");
  return !!token;
};

export const getToken = () => {
   return localStorage.getItem("token");
};

export const logout = () => {
  localStorage.removeItem("token");
  localStorage.removeItem("expiresIn");
   delete axios.defaults.headers.common["Authorization"];
};

axios.interceptors.request.use(
   (config) => {
    const token = getToken();
    if (token) {
      config.headers.Authorization = token; 
        }
        return config;
      },
      (error) => {
        return Promise.reject(error);
      }
    );

I am expecting to to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use. How can I do that?

New contributor

Sanjana MV is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

How can I send a JWT to a React application and store it after completing SAML authentication?

Currently, I generate a JWT from the SAML response, store it in the JwtResponse DTO, and send it to the frontend as part of the response, along with a redirect URL in the header indicating where the user should be redirected after authentication. However, after authentication, the JwtResponse is visible in the response of the URL (http://localhost:8080/login/saml2/sso/okta).

What I want instead is to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use.How can I do that? I cannot sent the jwt in url query parameter. Kindly ignore that method (and also ignore usage of session cookies) and suggest any other method.

This is what i have tried:

@PostMapping("/auth")
    public ResponseEntity<JwtResponse> handleSAMLLogin(Authentication      authentication) {
            Saml2AuthenticatedPrincipal principal = (Saml2AuthenticatedPrincipal) authentication.getPrincipal();

        Map<String, Object> claims = new HashMap<>();
        principal.getAttributes().forEach((key, value) -> {
            claims.put(key, value.get(0));
        });

        JwtResponse jwtResponse = new JwtResponse(
                samlAuthenticationSuccessHandler.generateSamlJWTToken(principal, claims)
        );

        return ResponseEntity
                .ok()
                .header("X-Redirect-URL", "/home")
                .body(jwtResponse);
    }
}

This is my frontend code which is not saving the response in the localStorage:

import axios from "axios";

export const initiateAuth = () => {
  window.location.href = "http://localhost:8080/saml2/authenticate/okta";
}; 

export const handleAuthCallback = async () => {
  try {
    const response = await axios.get(
      "http://localhost:8080/login/saml2/sso/okta",
      {
        headers: {
          Accept: "application/json",
        },
      }
     );

    const { accessToken, tokenType } = response.data;

    if (accessToken) {
      localStorage.setItem("token", `${tokenType} ${accessToken}`);

      localStorage.setItem("expiresIn", response.data.expiresIn);

      axios.defaults.headers.common[
        "Authorization"
      ] = `${tokenType} ${accessToken}`;

      return true;
    }

    return false;
   } catch (error) {
    console.error("Failed to handle authentication callback", error);
    return false;
   }
};

export const isAuthenticated = () => {
  const token = localStorage.getItem("token");
  return !!token;
};

export const getToken = () => {
   return localStorage.getItem("token");
};

export const logout = () => {
  localStorage.removeItem("token");
  localStorage.removeItem("expiresIn");
   delete axios.defaults.headers.common["Authorization"];
};

axios.interceptors.request.use(
   (config) => {
    const token = getToken();
    if (token) {
      config.headers.Authorization = token; 
        }
        return config;
      },
      (error) => {
        return Promise.reject(error);
      }
    );

I am expecting to to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use. How can I do that?

New contributor

Sanjana MV is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

How can I send a JWT to a React application and store it after completing SAML authentication?

Currently, I generate a JWT from the SAML response, store it in the JwtResponse DTO, and send it to the frontend as part of the response, along with a redirect URL in the header indicating where the user should be redirected after authentication. However, after authentication, the JwtResponse is visible in the response of the URL (http://localhost:8080/login/saml2/sso/okta).

What I want instead is to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use.How can I do that? I cannot sent the jwt in url query parameter. Kindly ignore that method (and also ignore usage of session cookies) and suggest any other method.

This is what i have tried:

@PostMapping("/auth")
    public ResponseEntity<JwtResponse> handleSAMLLogin(Authentication      authentication) {
            Saml2AuthenticatedPrincipal principal = (Saml2AuthenticatedPrincipal) authentication.getPrincipal();

        Map<String, Object> claims = new HashMap<>();
        principal.getAttributes().forEach((key, value) -> {
            claims.put(key, value.get(0));
        });

        JwtResponse jwtResponse = new JwtResponse(
                samlAuthenticationSuccessHandler.generateSamlJWTToken(principal, claims)
        );

        return ResponseEntity
                .ok()
                .header("X-Redirect-URL", "/home")
                .body(jwtResponse);
    }
}

This is my frontend code which is not saving the response in the localStorage:

import axios from "axios";

export const initiateAuth = () => {
  window.location.href = "http://localhost:8080/saml2/authenticate/okta";
}; 

export const handleAuthCallback = async () => {
  try {
    const response = await axios.get(
      "http://localhost:8080/login/saml2/sso/okta",
      {
        headers: {
          Accept: "application/json",
        },
      }
     );

    const { accessToken, tokenType } = response.data;

    if (accessToken) {
      localStorage.setItem("token", `${tokenType} ${accessToken}`);

      localStorage.setItem("expiresIn", response.data.expiresIn);

      axios.defaults.headers.common[
        "Authorization"
      ] = `${tokenType} ${accessToken}`;

      return true;
    }

    return false;
   } catch (error) {
    console.error("Failed to handle authentication callback", error);
    return false;
   }
};

export const isAuthenticated = () => {
  const token = localStorage.getItem("token");
  return !!token;
};

export const getToken = () => {
   return localStorage.getItem("token");
};

export const logout = () => {
  localStorage.removeItem("token");
  localStorage.removeItem("expiresIn");
   delete axios.defaults.headers.common["Authorization"];
};

axios.interceptors.request.use(
   (config) => {
    const token = getToken();
    if (token) {
      config.headers.Authorization = token; 
        }
        return config;
      },
      (error) => {
        return Promise.reject(error);
      }
    );

I am expecting to to redirect the user to http://localhost:8080/home and save the JwtResponse in localStorage for further use. How can I do that?

New contributor

Sanjana MV is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật