'Facebook Developer Privacy Compliance - incident response system
For few months straight im trying to pass "Developer Privacy Compliance" check on my app.
My final step is about this request:
Test your incident response systems and processes at least every 12 months. Provide recent incident response test outcome summary. Scope should include both systems and processes
I've tried to get more details or even examples/exact tools I need to use and received this answer:
Foundationally, your organization should have tools in place for detecting incidents (e.g., anomalous logins or data egress), tools for managing incidents (prioritizing, escalating, tracking resolution), and related policies (e.g., whom to notify)
Still confused. Is anyone here passed full "Developer Privacy Compliance" in past and proved this step somehow? Please, share your experience or point me to some examples of tools or services I can use to implement "incident response system" suitable for Facebook in this case. Thanks!
Solution 1:[1]
Here's another way of doing it and I also fixed the order of the tags.
.content {
font-family: sans-serif;
}
.content ul {
column-count: 3;
column-rule: 1px solid gray;
list-style-type: none;
padding: 0;
}
.content li {
display: flex;
}
.content a {
background-color: lightgray;
border: 1px inset black;
border-radius: 3px;
margin: 0.25rem 0;
padding: 0.25rem;
text-align: center;
width: 100%;
}
<div class="content">
<ul>
<li><a href="https://www.coursera.org/">Coursera</a></li>
<li><a href="https://developer.mozilla.org/en-US/">MDN Web Docs</a></li>
<li><a href="https://www.freecodecamp.org/learn/">FreeCodeCamp</a></li>
<li><a href="https://stackoverflow.com/">Stack Overflow</a></li>
<li><a href="https://www.w3schools.com/">W3 Schools</a></li>
<li><a href="https://www.jsfiddle.net/">jsfiddle</a></li>
</ul>
</div>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
