Hi i want to filter the explicit images when i run my application(in local and server). how to i restrict the images which are containing adult images what should i do for restrict images using google custom search engine please anyone help me.
i am using below code but its not working.
<script type="text/javascript">
google.load('search', '1');
function initialize() {
var searchControl = new google.search.SearchControl();
searchControl.addSearcher(new google.search.ImageSearch());
searchControl.draw(document.getElementById("searchcontrol"));
searchControl.execute("sunset");
}
google.setOnLoadCallback(initialize);
</script>