winged predator 5 letters 04/11/2022 0 Comentários

postman 401 unauthorized spring boot

So lets say that the client responds by sending some login credentials, and that those credentials are valid: Spring Security then invokes our specified authentication success handler. Find centralized, trusted content and collaborate around the technologies you use most. 2022 Moderator Election Q&A Question Collection, 403 Forbidden vs 401 Unauthorized HTTP responses. However, you might want to create a framework independent response structure for your organization. Source: stackoverflow.com. You can configure the springSecurityFilterChain to ignore all requests and thus allow unauthenticated access to all your endpoints with the following: How to customize the 404 error page in Spring Boot? Paste the password, which we have copied from the log. From the drop down select Basic Auth and then provide the user credentails of the user trying to perform the action. Once download is complete, you can click the desktop shortcut to launch Postman. The Internet Engineering Task Force (IETF) defines the error 401 Unauthorized as: The 401 (Unauthorized) status code indicates that the request has not been applied because it lacks valid authentication credentials for the target resource. How to resolve 401 unauthorised error in IBM Watson? As a result, it will reject all requests without a valid authorization token. - Status: 401 Unauthorized, Spring Boot 2.0 OAuth2 throws 401 Unauthorized, 401 Unauthorized Access Denied in Spring boot Oauth2, Spring Boot Unit Test ignores logging.level, How to write a unit test for a Spring Boot Controller endpoint, Spring Boot properties in 'application.yml' not loading from JUnit Test, How to test a component / bean in Spring Boot, @Value "Could not resolve placeholder" in Spring Boot Test, Simple embedded Kafka test example with spring boot, Integration Test with Spring Boot and Spock, Spring boot Test fails saying, Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean, Java Spring Boot Test: How to exclude java configuration class from test context, Spring Boot default test throws an IllegalStateException. also the log from application: Do you have a Spring Security dependency? I'm trying to develop an simple CRUD web app with Spring Boot, Lombok, JPA and Hibernate, MySQL. Stack Overflow for Teams is moving to its own domain! rev2022.11.4.43007. Find centralized, trusted content and collaborate around the technologies you use most. What to do when you get an error in Spring Boot? Iam working in springboot application and iam trying to save the data in database, code is executing properly and not getting any error during execution but when iam trying to post the url in postman iam getting status: 401 unauthorized any quick suggestion console In the header, we include Authorization: Basic (base64 encoded username and password) for all our calls. I found the problem, 401 status is set from servlet filter so it never returns ResponseEntity of Favorite.class, but it returns ResponseEntity of Void.class. Are you using Spring Security, do you have a security configuration and if so could you please share it? @AchillesVan I followed ur advice and created an application.properties inside resources in the module and added the text u mentioned, I'm still getting 401 on all APIs '< HTTP/1.1 401 Unauthorized < WWW-Authenticate: Basic realm="Realm"' any more suggestions? . Didanyone experience the same issue? In the Dickinson Core Vocabulary why is vos given as an adjective, but tu as a pronoun? But RestTemplate only gives the stacktrace as above. Tried to add this token on Auth tab or set header directly - nothing works. Firstly: Yes, i know there's lots of this question already asked but no one really helped me much. To learn more, see our tips on writing great answers. Notice how Postman automatically adds the Authorization header. Finally, on the body tag, add the json request data. This is the starting point of the application. How do you actually pronounce the vowels that form a synalepha/sinalefe, specifically when singing? The thing is, we have added the Bluemix domain in the Admin Console already. Spring Boot: How can I set the logging level with application.properties? By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. Why does Spring Boot postman give 401 Unauthorized stack? REST services requests using form-based spring authentication receive HTTP status 401 (unauthorized) in the response. Making a Pre-flight Request. It was my fault from the start: It was automatically checked from the checkbox in IntelliJ "Spring Security". You will see a message if Postman is not able to send your request, or if it does not receive a response from the API you sent the request to. We havent explicitly excluded the preflight requests from authorization in our Spring Security configuration. I have provided a spring boot security username and password as below. What is a good way to make an abstract board game truly alien? So given what I see there, Postman doesnt support Windows Authentication (NTLM) to web services, and therefore you will get an 401 in postman. Discussion posts and replies are publicly visible. How to create Spring Boot rest service and test it via postman? And how can I solve it? REST API needs authentication and that can be achived by various ways, easiest and most common one being Basic Auth (using an HTTP Header encoded in Base64). However, when we call it via Postman or via apps that we developed in Bluemix, it returns "HTTP Status 401 - This requires HTTP authentication". 3 Which is the default error response in Spring Boot? Tried to google for similar issue but nothing is out there for me. Can Spring Boot test classes reuse application context for faster test run? Error retrieving data for urlhttps:// .atlassian.net/rest/api/2/field: Unauthorized (401) I tried a direct request through cURL and it responds the same way today. (for example i want to POST a request with "name","quantity","price" into my MYSQL DB). How to resolve spring resttemplate receives 401 Unauthorized? Why do I get 401 unauthorized in Postman? @EleftheriaStein-Kousathana i've edited my post with the log from my Spring (using IntelJ IDE) and also no, i don't hve a security dependency. Asking for help, clarification, or responding to other answers. In the Dickinson Core Vocabulary why is vos given as an adjective, but tu as a pronoun? Thanks Former Member! The HTTP 401 Unauthorized client error status response code indicates that the request has not been applied because it lacks valid authentication credentials for the target resource. AuthenticationSuccessHandler In form-based authentication, redirection happens right after login, which is handled in an AuthenticationSuccessHandler instance in Spring Security. We and our partners use data for Personalised ads and content, ad and content measurement, audience insights and product development. rev2022.11.4.43007. All rights reserved. I can see that you sent a request to an endpoint to get your bearer token which worked fine, but when you tried to use the bearer token for further requests, it doesnt work. I am able to do CRUD operations and postman gives correct responses, but when I add Spring Security username and password Postman gives 401 Unauthorized. The call to execute this was retrieveData (buildUrl (urlString));. Using appSecurity-form-local.xml security configuration template. Remember that Spring Security secures all endpoints by default. However, they have different meanings and apply different constraints when validating a request: Authentication precedes Authorization; its about validating the received credentials; its where we verify that both username and password match the ones that our application recognizes. Ehsan Sasanian 3. Exact way to disable authentication could not be found by me.But by removing actuator dependency which is working. When signing up everything is fine, the new user is created correctly. Why does Spring Boot postman give 401 Unauthorized stack? If you continue to use this site we will assume that you are happy with it. Connect and share knowledge within a single location that is structured and easy to search. Are Githyanki under Nondetection all the time? How to provide username in Spring Security javatpoint? Thanks! This solved a icky bug that was faced. Continue with Recommended Cookies. When the migration is complete, you will access your Teams at stackoverflowteams.com, and they will no longer appear in the left sidebar on stackoverflow.com. The user details has Roles, or Authorities. How to get rid of 401 Unauthorized error? Why do I get two different answers for the current through the 47 k resistor when I do a source transformation? Is there an authorization token in Spring Security? There are many possible reasons for your API requests not behaving as expected. The spec says that bad user credentials in a password grant should return a 400, and thats what the default behaviour is for Spring OAuth (client and server seem to behave as expected). When to redirect to previous url in Spring Security? Ensure that everything is saved before running the Collection. 4 How to secure Spring Boot application with app ID? Where's your AuthenticationManager coming from? I prefer women who cook good food, who speak three languages, and who go mountain hiking - what if it is a woman who only has one of the attributes? Everytime i try to make a POST request into Postman it doesn't give me anything(401 Unathorized), as shown here: Of course when i run the project it gives me the DB shown in MYSQL, Here's the project content:(That YML file has nothing in it). You need to expand on everything that you're . When do you need authorization in Spring Boot? Copyright 2022 it-qa.com | All rights reserved. HTTP 401 Unauthorized error occurs in Spring Boot test, Spring Boot Security - Postman gives 401 Unauthorized, Spring Boot Integration Test Results in 401, Spring boot getting 401 unauthorized status code for simple get request, Spring boot + oauth2 + HttpClientErrorException 401 Unauthorized, Spring Boot REST API POST 401 Unauthorized, Keycloak HTTP 401 Unauthorized while creating new user using spring boot service. Everytime i try to make a POST request into Postman it doesn't give me anything(401 . Why so many wires in my old light fixture? How to integrate Keycloak with Spring Boot ( API )? I have provided a spring boot security username and password as below. I'm trying to develop an simple CRUD web app with Spring Boot, Lombok, JPA and Hibernate, MySQL. Click on the Body tab and select the raw radio button. Java: 401 Unauthorized test case issue in Unit test case for spring boot, REST, Template for Spring Boot error 401 Unauthorized, Spring Boot Google Oauth2 all requests return a 401 Unauthorized, Spring Boot JWT Roles and getting 401 Unauthorized, Postman gives 401 Unauthorized - Spring Boot & MYSQL, How can I upload an excel file with Spring Boot and Postman to a MySQL Database? Add this to your application.properties file : logging.level.org.springframework.security=DEBUG. Here is the screenshot of Ciphers that I have enable Here is the screenshot of TLS settings Does not work in Postman The default username is user. How to secure your REST API with Spring Security? Does a creature have to see to be affected by the Fear spell initially since it is an illusion? Viewed 1k times 0 . -I've tried making a simple Auth with my username+password from MySQL credentials into the Postman but didn't worked. What does 401 Unauthorized mean in IETF terms? I am able to do CRUD operations and postman gives correct responses, but when I add Spring Security username and password Postman gives 401 Unauthorized. } In the current version of Spring Boot (v2.1.0.RELEASE), the easiest way to get rid of the security issues is to add WebSecurityConfig.java to your project as follows: Default error response provided by Spring Boot contains all the details that are typically needed. (The auth.appendAuth () adds additional .queryParams () needed by the target service in urlString .) Spanish - How to write lm instead of lim? This HTML representation of the error renders well in a browser, but it not well suited for other scenarios, such as a REST API where a json representation may be preferred. These are APIs that we need to provide: The database we will use could be PostgreSQL or MySQL depending on the way we configure project dependency & datasource. Within Appian and using cURL, SoapUI, and Advanced REST Client (Chrome), we get a successful response (200 with expected response body). You can do that via the Authorization tab. It dependes what you choose. @Override protected void configure (AuthenticationManagerBuilder auth) throws Exception { auth.inMemoryAuthentication () .withUser ("hr") .password ("hr").roles ("USER"); } And set user name password from postman same. In C, why limit || and && to evaluate to booleans? Then I have these WebMvcConfigurations for Cors policy: What is wrong? These are my controller methods (first login then signup): I get on console "login" and "Us psw" with the correct data, but after. 10 Why is my postman not responding to my request? Flipping the labels in a binary classification gives different model and results, Non-anthropic, universal units of time for active SETI. 7 How to secure your REST API with Spring Security? Postman gives 401 Unauthorized - Spring Boot & MYSQL [closed] Ask Question Asked 1 year, 4 months ago. As a result, our API expects an authorization token in the OPTIONS request as well. You need to configure Spring Security, by default all routes all secured for authrorization. We and our partners use cookies to Store and/or access information on a device. How to access a value defined in the application.properties file in Spring Boot, Spring Security OAuth2 SSO with Custom provider + logout, Spring boot security consider case insensitive username check for login. 2022 Moderator Election Q&A Question Collection, How to configure port for a Spring Boot application, spring-boot-security annotating my SecurityConfig of @Configuration gives this error, spring boot wont connect to MYSQL database using Intellij, Error creating bean with name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration', Upgraded spring boot from 2.1.9 to 2.2.0 , now getting exception while starting, Correct the classpath of your application so that it contains a single, compatible version of org.springframework.plugin.core.PluginRegistry, While I am running my Spring Boot application, I am getting the below error. Provide URI http://localhost:8080/users. I am just adding this if it is convenient to any other. 8 What does 401 Unauthorized mean in IETF terms? 5. To subscribe to this RSS feed, copy and paste this URL into your RSS reader. 5 When to redirect to previous url in Spring Security? These are my controller methods (first login then signup): Whats the difference between authentication and authorization in Spring Security? 1 Why does Spring Boot postman give 401 Unauthorized stack? How to configure port for a Spring Boot application. Please Suggest me how to solve error. 9 What is HTTP status 401 for REST services? Try changing The AuthenticationManagerBuilder code as given below :-. Yes, Its enabled. Math papers where the only issue is that someone else could've done it but didn't. The logs show that you are using Spring Security, Postman gives 401 Unauthorized - Spring Boot & MYSQL [closed], Making location easier for developers with new data primitives, Stop requiring only one assertion per unit test: Multiple assertions are fine, Mobile app infrastructure being decommissioned. I do see there is Basic Authentication available, and postman does support that. DevCodeTutorial. How to secure Spring Boot application with app ID? Provide name and dob. It represents that the request could not be authenticated. Sorted by: 1. Select the media type JSON (application/json). GET method is allowed by default. Does squeezing out liquid from shredded potatoes significantly reduce cook time? Why does Q1 turn on and Q2 turn off when I apply 5 V? Error retrieving data for urlhttps://.atlassian.net/rest/api/2/field: Unauthorized (401) I tried a direct request through cURL and it responds the same way today. I am developing rest APIs in Spring Boot. The above code simply responds with a 401 Unauthorized status code as soon as theres an authentication problem. It may be represented as 401 Unauthorized, Authorization required, HTTP error 401- Unauthorized. Something like. I resolved it by using UriComponentsBuilder and explicitly calling encode () on the the exchange (). Then if I try to login with the just-created credentials, Postman returns a 401 Unauthorized error. Why is API welcome not received by Postman discourse community? What exactly makes a black hole STAY a black hole? Transformer 220/380/440 V 24 V explanation. So i don't know why it doesn't work for me, making a POST request into postman. An example of data being processed may be a unique identifier stored in a cookie. </p> <p><a href="http://vsimoveis.com/3bjta3t/porter-billing-services">Porter Billing Services</a>, <a href="http://vsimoveis.com/3bjta3t/does-hot-shot-bed-bug-killer-work">Does Hot Shot Bed Bug Killer Work</a>, <a href="http://vsimoveis.com/3bjta3t/a-copyright-is-registered-while-a-trademark-is">A Copyright Is Registered While A Trademark Is</a>, <a href="http://vsimoveis.com/3bjta3t/is-a-seatbelt-ticket-a-moving-violation-in-texas">Is A Seatbelt Ticket A Moving Violation In Texas</a>, <a href="http://vsimoveis.com/3bjta3t/cvs-minute-clinic-springfield%2C-nj">Cvs Minute Clinic Springfield, Nj</a>, <a href="http://vsimoveis.com/3bjta3t/the-product-manager-interview-book-pdf">The Product Manager Interview Book Pdf</a>, <a href="http://vsimoveis.com/3bjta3t/saint-depression-treatment-near-me">Saint Depression Treatment Near Me</a>, <a href="http://vsimoveis.com/3bjta3t/cello-2nd-position-exercises">Cello 2nd Position Exercises</a>, <a href="http://vsimoveis.com/3bjta3t/what-is-the-best-greenhouse-floor">What Is The Best Greenhouse Floor</a>, </p> </div><!-- /entry-content --> <div class="tag-social flex-middle-lg"> <div class="ali-right"> <div class="apus-social-share"> <div class="bo-social-icons bo-sicolor social-radius-rounded"> <a href="http://vsimoveis.com/3bjta3t/tufts-pre-orientation-2022" data-original-title="facebook" class="bo-social-facebook addthis_button_facebook"><i class="fab fa-facebook-f"></i> <span class="text">Compartilhar no Facebook</span> </a> <a href="http://vsimoveis.com/3bjta3t/javascript-formdata-append-multiple-files" data-original-title="twitter" class="bo-social-twitter addthis_button_twitter"><i class="fab fa-twitter"></i> <span class="text">Compartilhar no Twitter</span></a> <a href="http://vsimoveis.com/3bjta3t/goodbye-may-seem-forever-sheet-music" data-original-title="pinterest" class="bo-social-pinterest addthis_button_pinterest"><i class="fab fa-pinterest-p"></i> <span class="text">Compartilhar no Pinterest</span></a> <a href="http://vsimoveis.com/3bjta3t/palace-theatre%2C-mansfield-events-2022" data-original-title="share_more" class="addthis_button_compact"><i class="fas"></i>+</a> </div> </div> </div> </div> </div> </div> </div> </article> </div><!-- #content --> </div><!-- #primary --> </div> <div class="sidebar-wrapper col-md-4 col-lg-3 col-sm-12 col-xs-12 pull-right"> <aside class="sidebar sidebar-right" itemscope="itemscope" itemtype="http://schema.org/WPSideBar"> <div class="close-sidebar-btn hidden-lg hidden-md"><i class="ti-close"></i> <span>Fechar</span></div> <aside class="widget widget_search"><h2 class="widget-title">postman 401 unauthorized spring boot<span>Search</span></h2><div class="widget-search"> </div></aside><aside class="widget widget_categories"><h2 class="widget-title">postman 401 unauthorized spring boot<span>Categories</span></h2> <ul> <li class="cat-item cat-item-1"><a href="http://vsimoveis.com/3bjta3t/google-arts-and-culture-pocket-gallery">google arts and culture pocket gallery</a> </li> </ul> </aside><aside class="widget widget_apus_recent_post"><h2 class="widget-title">postman 401 unauthorized spring boot<span>Latest Post</span></h2><div class="post-widget"> <ul class="posts-list"> <li> <article class="post"> <div class="flex-middle"> <div class="inner"> <h4 class="entry-title">postman 401 unauthorized spring boot<a href="http://vsimoveis.com/3bjta3t/main-or-prepare-5-crossword-clue">main or prepare 5 crossword clue</a> </h4> <div class="top-info-blog"> <div class="date"> 04/11/2022 </div> </div> </div> </div> </article> </li> </ul> </div> </aside> </aside> </div> </div> </section> </div><!-- .site-content --> <div id="apus-footer" class="apus-footer footer-builder-wrapper footer-1"><div class="apus-footer-inner"> <div data-elementor-type="wp-post" data-elementor-id="763" class="elementor elementor-763"> <section class="elementor-section elementor-top-section elementor-element elementor-element-e501a2c elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="e501a2c" data-element_type="section" data-settings='{"stretch_section":"section-stretched","background_background":"classic"}'> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1f483de" data-id="1f483de" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-4c63c10 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4c63c10" data-element_type="section"> <div class="elementor-container elementor-column-gap-extended"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8105f6a" data-id="8105f6a" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-cfe3a66 elementor-widget elementor-widget-heading" data-id="cfe3a66" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.7.0 - 08-08-2022 */ .elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2 class="elementor-heading-title elementor-size-default">postman 401 unauthorized spring boot</h2> </div> </div> <div class="elementor-element elementor-element-1b2cbd9 elementor-widget elementor-widget-apus_element_address_box" data-id="1b2cbd9" data-element_type="widget" data-widget_type="apus_element_address_box.default"> <div class="elementor-widget-container"> <div class="widget-address-box style2"> <div class="row"> <div class="item col-xs-12 col-sm-12"> <div class="item-address style2"> <div class="top-inner"> <div class="features-box-image icon"><i class="flaticon-place"></i></div></div><div class="features-box-content"><div class="description">Rua Júlio de Castilhos, 283 - Centro Torres - RS, 95560-000</div></div> </div> </div> <div class="item col-xs-12 col-sm-12"> <div class="item-address style2"> <div class="top-inner"> <div class="features-box-image icon"><i class="flaticon-phone"></i></div></div><div class="features-box-content"><div class="description">(51) 3664-5151</div></div> </div> </div> <div class="item col-xs-12 col-sm-12"> <div class="item-address style2"> <div class="top-inner"> <div class="features-box-image icon"><i class="flaticon-mail-inbox-app"></i></div></div><div class="features-box-content"><div class="description">contato@vsimoveis.com</div></div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-677e89f" data-id="677e89f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3afda9c elementor-widget elementor-widget-apus_element_nav_menu" data-id="3afda9c" data-element_type="widget" data-widget_type="apus_element_nav_menu.default"> <div class="elementor-widget-container"> <div class="widget-nav-menu no-margin widget "> <h2 class="widget-title">postman 401 unauthorized spring boot</h2> <div class="widget-content"> <div class="menu-imoveis-container"><ul id="menu-imoveis" class="menu"><li id="menu-item-9731" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9731"><a href="http://vsimoveis.com/3bjta3t/eloquent-articulate-crossword-clue">eloquent articulate crossword clue</a></li> <li id="menu-item-9727" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9727"><a href="http://vsimoveis.com/3bjta3t/introduction-to-climate-change-book">introduction to climate change book</a></li> <li id="menu-item-9728" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9728"><a href="http://vsimoveis.com/3bjta3t/racing-post-cards-tomorrow">racing post cards tomorrow</a></li> <li id="menu-item-9729" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9729"><a href="http://vsimoveis.com/3bjta3t/influential-person-crossword-clue">influential person crossword clue</a></li> <li id="menu-item-9730" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9730"><a href="http://vsimoveis.com/3bjta3t/how-many-relics-of-the-true-cross-are-there">how many relics of the true cross are there</a></li> </ul></div> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-bba423e" data-id="bba423e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-596a3fa elementor-widget elementor-widget-apus_element_nav_menu" data-id="596a3fa" data-element_type="widget" data-widget_type="apus_element_nav_menu.default"> <div class="elementor-widget-container"> <div class="widget-nav-menu no-margin widget "> <h2 class="widget-title">postman 401 unauthorized spring boot</h2> <div class="widget-content"> <div class="menu-fale-conosco-footer-container"><ul id="menu-fale-conosco-footer" class="menu"><li id="menu-item-9726" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9726"><a href="http://vsimoveis.com/3bjta3t/comsol-parameter-sweep">comsol parameter sweep</a></li> <li id="menu-item-9724" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9724"><a href="http://vsimoveis.com/3bjta3t/jquery-select-by-class-and-data-attribute">jquery select by class and data attribute</a></li> <li id="menu-item-9725" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9725"><a href="http://vsimoveis.com/3bjta3t/korg-pa600-music-stand">korg pa600 music stand</a></li> </ul></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-232fc2b elementor-widget elementor-widget-apus_element_social_links" data-id="232fc2b" data-element_type="widget" data-widget_type="apus_element_social_links.default"> <div class="elementor-widget-container"> <div class="widget-socials "> <ul class="social list-inline"> <li> <a href="http://vsimoveis.com/3bjta3t/my-hero-academia-shiketsu-characters" target="_blank">my hero academia shiketsu characters<i class="fab fa-facebook-f"></i> </a> </li> <li> <a href="http://vsimoveis.com/3bjta3t/aim-and-scope-of-physical-anthropology-pdf" target="_blank">aim and scope of physical anthropology pdf<i class="fab fa-instagram"></i> </a> </li> </ul> </div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-2e7a63a elementor-widget elementor-widget-spacer" data-id="2e7a63a" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.7.0 - 08-08-2022 */ .elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-container{--container-widget-width:100%}.e-container>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-negative:0;flex-shrink:0}.e-container>.elementor-widget-spacer>.elementor-widget-container,.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-container>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-67c41ea elementor-section-content-middle elementor-reverse-tablet elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="67c41ea" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1447f40" data-id="1447f40" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-18290d9 elementor-widget elementor-widget-heading" data-id="18290d9" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <div class="elementor-heading-title elementor-size-default"><a href="http://vsimoveis.com/3bjta3t/behind-the-scenes-cruise-ship-tv-show" target="_blank">behind the scenes cruise ship tv show</a></div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-f570498" data-id="f570498" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-d2e37bc elementor-widget elementor-widget-heading" data-id="d2e37bc" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <div class="elementor-heading-title elementor-size-default">© 2022 VS Imóveis. Todos os direitos reservados.</div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div></div> <a href="http://vsimoveis.com/3bjta3t/what-states-accept-ghi-insurance" id="back-to-top" class="add-fix-top">what states accept ghi insurance<i class="flaticon-up-arrow"></i> </a> </div><!-- .site --> <div id="compare-sidebar" class=""> <h3 class="title">postman 401 unauthorized spring boot</h3> <div class="compare-sidebar-inner"> <div class="compare-list"> </div> </div> <div class="compare-sidebar-btn"> Comparar (<span class="count">0</span>) </div> </div><!-- .widget-area --> <!-- Click to Chat - https://holithemes.com/plugins/click-to-chat/ v3.12.2 --> <div class="ht-ctc ht-ctc-chat ctc-analytics ctc_wp_desktop style-7_1 " id="ht-ctc-chat" style="display: none; position: fixed; bottom: 85px; right: 30px;"> <div class="ht_ctc_style ht_ctc_chat_style"> <style id="ht-ctc-s7_1"> .ht-ctc .ctc_s_7_1:hover .ctc_s_7_icon_padding, .ht-ctc .ctc_s_7_1:hover{background-color:#00d34d !important;border-radius: 25px;}.ht-ctc .ctc_s_7_1:hover .ctc_s_7_1_cta{color:#f4f4f4 !important;}.ht-ctc .ctc_s_7_1:hover svg g path{fill:#f4f4f4 !important;}</style> <div class="ctc_s_7_1 ctc-analytics" style="display:flex;justify-content:center;align-items:center; background-color: #25D366; border-radius:25px;"> <p class="ctc_s_7_1_cta ctc-analytics ctc_cta ht-ctc-cta ht-ctc-cta-hover ctc_cta_stick " style="; display: none; order: 0; color: #ffffff; padding-left: 21px; margin:0 10px; border-radius: 25px; ">WhatsApp</p> <div class="ctc_s_7_icon_padding ctc-analytics " style="padding: 12px;background-color: #25D366;border-radius: 25px; "> <svg style="pointer-events:none; display:block; height:25px; width:25px;" height="25px" version="1.1" viewbox="0 0 509 512" width="25px"> <desc></desc><defs></defs> <g fill="none" fill-rule="evenodd" id="Page-1" stroke="none" stroke-width="1"> <path d="M259.253137,0.00180389396 C121.502859,0.00180389396 9.83730687,111.662896 9.83730687,249.413175 C9.83730687,296.530232 22.9142299,340.597122 45.6254897,378.191325 L0.613226597,512.001804 L138.700183,467.787757 C174.430395,487.549184 215.522926,498.811168 259.253137,498.811168 C396.994498,498.811168 508.660049,387.154535 508.660049,249.415405 C508.662279,111.662896 396.996727,0.00180389396 259.253137,0.00180389396 L259.253137,0.00180389396 Z M259.253137,459.089875 C216.65782,459.089875 176.998957,446.313956 143.886359,424.41206 L63.3044195,450.21808 L89.4939401,372.345171 C64.3924908,337.776609 49.5608297,295.299463 49.5608297,249.406486 C49.5608297,133.783298 143.627719,39.7186378 259.253137,39.7186378 C374.871867,39.7186378 468.940986,133.783298 468.940986,249.406486 C468.940986,365.025215 374.874096,459.089875 259.253137,459.089875 Z M200.755924,146.247066 C196.715791,136.510165 193.62103,136.180176 187.380228,135.883632 C185.239759,135.781068 182.918689,135.682963 180.379113,135.682963 C172.338979,135.682963 164.002301,138.050856 158.97889,143.19021 C152.865178,149.44439 137.578667,164.09322 137.578667,194.171258 C137.578667,224.253755 159.487251,253.321759 162.539648,257.402027 C165.600963,261.477835 205.268745,324.111057 266.985579,349.682963 C315.157262,369.636141 329.460495,367.859106 340.450462,365.455539 C356.441543,361.9639 376.521811,350.186865 381.616571,335.917077 C386.711331,321.63837 386.711331,309.399797 385.184018,306.857991 C383.654475,304.305037 379.578667,302.782183 373.464955,299.716408 C367.351242,296.659552 337.288812,281.870254 331.68569,279.83458 C326.080339,277.796676 320.898622,278.418749 316.5887,284.378615 C310.639982,292.612729 304.918689,301.074268 300.180674,306.09099 C296.46161,310.02856 290.477218,310.577055 285.331175,308.389764 C278.564174,305.506821 259.516237,298.869139 236.160607,278.048627 C217.988923,261.847958 205.716906,241.83458 202.149458,235.711949 C198.582011,229.598236 201.835077,225.948292 204.584241,222.621648 C207.719135,218.824546 210.610997,216.097679 213.667853,212.532462 C216.724709,208.960555 218.432625,207.05866 220.470529,202.973933 C222.508433,198.898125 221.137195,194.690767 219.607652,191.629452 C218.07588,188.568136 205.835077,158.494558 200.755924,146.247066 Z" fill="#ffffff" id="htwaicon-chat"></path> </g> </svg> </div> </div> </div> </div> <span class="ht_ctc_chat_data" data-no_number="" data-settings='{"number":"5551984279354","pre_filled":"Contato atrav\u00e9s do site VS Im\u00f3veis","dis_m":"show","dis_d":"show","css":"display: none; cursor: pointer; z-index: 99999999;","pos_d":"position: fixed; bottom: 85px; right: 30px;","pos_m":"position: fixed; bottom: 85px; right: 30px;","schedule":"no","se":150,"ani":"no-animations","url_target_d":"_blank","ga":"yes","fb":"yes"}'></span> <link rel="stylesheet" id="elementor-frontend-css" href="https://vsimoveis.com/wp-content/plugins/elementor/assets/css/frontend-lite.min.css?ver=3.7.0" type="text/css" media="all"> <link rel="stylesheet" id="elementor-post-179-css" href="https://vsimoveis.com/wp-content/uploads/elementor/css/post-179.css?ver=1666091606" type="text/css" media="all"> <link rel="stylesheet" id="elementor-post-763-css" href="https://vsimoveis.com/wp-content/uploads/elementor/css/post-763.css?ver=1665147259" type="text/css" media="all"> <link rel="stylesheet" id="elementor-icons-css" href="https://vsimoveis.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.16.0" type="text/css" media="all"> <link rel="stylesheet" id="elementor-post-3861-css" href="https://vsimoveis.com/wp-content/uploads/elementor/css/post-3861.css?ver=1665147258" type="text/css" media="all"> <link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=6.1" type="text/css" media="all"> <link rel="stylesheet" id="elementor-icons-shared-0-css" href="https://vsimoveis.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3" type="text/css" media="all"> <link rel="stylesheet" id="elementor-icons-fa-brands-css" href="https://vsimoveis.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.15.3" type="text/css" media="all"> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/bootstrap.min.js?ver=20150330" id="bootstrap-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/slick.min.js?ver=1.8.0" id="slick-js"></script> <script type="text/javascript" id="countdown-js-extra"> /* <![CDATA[ */ var houzing_countdown_opts = {"days":"Dias","hours":"Hrs","mins":"Mins","secs":"Secs"}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/countdown.js?ver=20150315" id="countdown-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/jquery.magnific-popup.min.js?ver=1.1.0" id="jquery-magnific-popup-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/jquery.unveil.js?ver=1.1.0" id="jquery-unveil-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/perfect-scrollbar.min.js?ver=1.5.0" id="perfect-scrollbar-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/jquery.mmenu.js?ver=0.6.12" id="jquery-mmenu-js"></script> <script type="text/javascript" id="houzing-functions-js-extra"> /* <![CDATA[ */ var houzing_ajax = {"ajaxurl":"https:\/\/vsimoveis.com\/wp-admin\/admin-ajax.php","previous":"Previous","next":"Pr\u00f3ximo","mmenu_title":"Menu"}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/functions.js?ver=20150330" id="houzing-functions-js"></script> <script type="text/javascript" id="houzing-functions-js-after"> (function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement); </script> <script type="text/javascript" id="ht_ctc_app_js-js-extra"> /* <![CDATA[ */ var ht_ctc_chat_var = {"number":"5551984279354","pre_filled":"Contato atrav\u00e9s do site VS Im\u00f3veis","dis_m":"show","dis_d":"show","css":"display: none; cursor: pointer; z-index: 99999999;","pos_d":"position: fixed; bottom: 85px; right: 30px;","pos_m":"position: fixed; bottom: 85px; right: 30px;","schedule":"no","se":"150","ani":"no-animations","url_target_d":"_blank","ga":"yes","fb":"yes"}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/click-to-chat-for-whatsapp/new/inc/assets/js/app.js?ver=3.12.2" id="ht_ctc_app_js-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.9" id="regenerator-runtime-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0" id="wp-polyfill-js"></script> <script type="text/javascript" id="contact-form-7-js-extra"> /* <![CDATA[ */ var wpcf7 = {"api":{"root":"https:\/\/vsimoveis.com\/wp-json\/","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.6.2" id="contact-form-7-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/magnific/jquery.magnific-popup.min.js?ver=1.1.0" id="magnific-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.2" id="jquery-ui-core-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.2" id="jquery-ui-mouse-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.2" id="jquery-ui-slider-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/jquery.ui.touch-punch.min.js?ver=20150330" id="jquery-ui-touch-punch-js"></script> <script type="text/javascript" id="wp-realestate-main-js-extra"> /* <![CDATA[ */ var wp_realestate_opts = {"ajaxurl":"https:\/\/vsimoveis.com\/wp-admin\/admin-ajax.php","ajaxurl_endpoint":"\/?wre-ajax=%%endpoint%%","dashboard_url":"https:\/\/vsimoveis.com\/painel\/","login_register_url":"https:\/\/vsimoveis.com\/login\/","after_login_page_agency_url":"https:\/\/vsimoveis.com\/painel\/","after_login_page_agent_url":"https:\/\/vsimoveis.com\/painel\/","after_login_page_user_url":"https:\/\/vsimoveis.com\/painel\/","home_url":"https:\/\/vsimoveis.com\/","money_decimals":"3","money_dec_point":",","money_thousands_separator":".","show_more":"Show more +","show_more_icon":"","show_less":"Show less -","show_less_icon":"","map_service":"google-map","geocoder_country":"br","rm_item_txt":"Voc\u00ea tem certeza? Esta a\u00e7\u00e3o n\u00e3o poder\u00e1 ser desfeita.","ajax_nonce":"39451b4c93","approval_type":"admin_approve","resend_otp_wait_time":"30","recaptcha_enable":"","divisors":{"":{"divisor":1,"key":""}},"enable_multi_currencies":"no"}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/main.js?ver=20131022" id="wp-realestate-main-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-private-message/assets/js/perfect-scrollbar.jquery.min.js?ver=0.6.10" id="perfect-scrollbar-jquery-js"></script> <script type="text/javascript" id="wp-private-message-main-js-extra"> /* <![CDATA[ */ var wp_private_message_opts = {"ajaxurl":"https:\/\/vsimoveis.com\/wp-admin\/admin-ajax.php"}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-private-message/assets/js/main.js?ver=20131022" id="wp-private-message-main-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/jquery.highlight.js?ver=5" id="jquery-highlight-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/leaflet.js?ver=1.5.1" id="leaflet-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/Control.Geocoder.js?ver=1.5.1" id="control-geocoder-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/esri-leaflet.js?ver=1.5.1" id="esri-leaflet-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/esri-leaflet-geocoder.js?ver=1.5.1" id="esri-leaflet-geocoder-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/leaflet.markercluster.js?ver=1.5.1" id="leaflet-markercluster-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/LeafletHtmlIcon.js?ver=1.5.1" id="leaflet-HtmlIcon-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/wp-realestate/assets/js/leaflet/Leaflet.GoogleMutant.js?ver=1.5.1" id="leaflet-GoogleMutant-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-includes/js/imagesloaded.min.js?ver=4.1.4" id="imagesloaded-js"></script> <script type="text/javascript" id="houzing-property-js-extra"> /* <![CDATA[ */ var houzing_property_opts = {"ajaxurl":"https:\/\/vsimoveis.com\/wp-admin\/admin-ajax.php","dec_point":",","thousands_separator":".","currency":"$","monthly_text":"Monthly Payment: ","compare_added_title":"Adicionado","compare_title":"Comparar","compare_added_tooltip_title":"Remover","compare_add_tooltip_title":"Add a compara\u00e7\u00e3o","favorite_added_tooltip_title":"Remover","favorite_add_tooltip_title":"Add Favorite","template":"<a href=\"{{url}}\" class=\"media autocompleate-media\">\r\n\t\t\t<div class=\"media-left media-middle\">\r\n\t\t\t\t<img src=\"{{image}}\" class=\"media-object\" height=\"50\" width=\"50\">\r\n\t\t\t<\/div>\r\n\t\t\t<div class=\"media-body media-middle\">\r\n\t\t\t\t<h4>{{title}}<\/h4>\r\n\t\t\t\t{{{price}}}\r\n\t\t\t\t{{{metas}}}\r\n\t\t\t\t<\/div><\/a>","empty_msg":"Unable to find any listing that match the currenty query"}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/property.js?ver=20150330" id="houzing-property-js"></script> <script type="text/javascript" id="houzing-property-map-js-extra"> /* <![CDATA[ */ var houzing_property_map_opts = {"map_service":"google-map","mapbox_token":"","mapbox_style":"","custom_style":"[\r\n {\r\n \"featureType\": \"poi\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#747474\"\r\n },\r\n {\r\n \"lightness\": \"23\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.attraction\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#f38eb0\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.government\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ced7db\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.medical\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffa5a8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.park\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#c7e5c8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.place_of_worship\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#d6cbc7\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.school\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#c4c9e8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"poi.sports_complex\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#b1eaf1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"lightness\": \"100\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road\",\r\n \"elementType\": \"labels\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"off\"\r\n },\r\n {\r\n \"lightness\": \"100\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.highway\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffd4a5\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.arterial\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#ffe9d2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"simplified\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.fill\",\r\n \"stylers\": [\r\n {\r\n \"weight\": \"3.00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"geometry.stroke\",\r\n \"stylers\": [\r\n {\r\n \"weight\": \"0.30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"labels.text\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"labels.text.fill\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#747474\"\r\n },\r\n {\r\n \"lightness\": \"36\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"road.local\",\r\n \"elementType\": \"labels.text.stroke\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#e9e5dc\"\r\n },\r\n {\r\n \"lightness\": \"30\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"transit.line\",\r\n \"elementType\": \"geometry\",\r\n \"stylers\": [\r\n {\r\n \"visibility\": \"on\"\r\n },\r\n {\r\n \"lightness\": \"100\"\r\n }\r\n ]\r\n },\r\n {\r\n \"featureType\": \"water\",\r\n \"elementType\": \"all\",\r\n \"stylers\": [\r\n {\r\n \"color\": \"#d2e7f7\"\r\n }\r\n ]\r\n }\r\n]","googlemap_type":"roadmap","default_latitude":"-29.33927968445779","default_longitude":"-49.72608861800667","default_pin":""}; /* ]]> */ </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/themes/houzing/js/property-map.js?ver=20150330" id="houzing-property-map-js"></script> <script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js?ver=0.6.12" id="addthis-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.7.0" id="elementor-webpack-runtime-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.7.0" id="elementor-frontend-modules-js"></script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2" id="elementor-waypoints-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Compartilhar no Facebook","shareOnTwitter":"Compartilhar no Twitter","pinIt":"Fixar","download":"Baixar","downloadImage":"Baixar imagem","fullscreen":"Tela cheia","zoom":"Zoom","share":"Compartilhar","playVideo":"Reproduzir v\u00eddeo","previous":"Anterior","next":"Pr\u00f3ximo","close":"Fechar"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Celular","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Celular extra","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet extra","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}},"version":"3.7.0","is_static":false,"experimentalFeatures":{"e_dom_optimization":true,"e_optimized_assets_loading":true,"e_optimized_css_loading":true,"a11y_improvements":true,"additional_custom_breakpoints":true,"e_import_export":true,"e_hidden__widgets":true,"landing-pages":true,"elements-color-picker":true,"favorite-widgets":true,"admin-top-bar":true},"urls":{"assets":"https:\/\/vsimoveis.com\/wp-content\/plugins\/elementor\/assets\/"},"settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":16995,"title":"postman 401 unauthorized spring boot%20-%20VS%20Im%C3%B3veis","excerpt":"","featuredImage":false}}; </script> <script type="text/javascript" src="https://vsimoveis.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.7.0" id="elementor-frontend-js"></script> </body> </html>