Privacy Policy Effective date: 03 / 30, 2020 Flash Shooting ("us", "we", or "our") operates the Flash Shooting mobile application (hereinafter referred to as the "Service"). This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data. Our Privacy Policy for Flash Shooting is created with the help of the Privacy Policies website . We use your data to provide and improve the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, the terms used in this Privacy Policy have the same meanings as in our Terms and Conditions. Information Collection And Use We collect several different types of information for various purposes to provide and improve our Service to you. Types of Data Collected Personal Data While using ...
#Powershell send request for XML POST# on Powershell add line for you need request web address ``` $Uri = "request web address" ``` add line for for you need request XML body ``` $body = "xml form for request" ``` add line for create servce ``` [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ``` add line to set web request ``` $build_info = Invoke-WebRequest -uri $Uri -Method POST -Body $body -ContentType 'application/XML' #-Credential $usercreds ``` Full code : ``` $Uri = "request web address" $body = "xml form for request" [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $build_info = Invoke-WebRequest -uri $Uri -Method POST -Body $body -ContentType 'application/XML' #-Credential $usercreds $build_info.Content ```
留言
張貼留言