This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#campaignViewer{ | |
width: 100%; | |
height: 100%; | |
margin-top: 20px; | |
} | |
th{ | |
text-align: center; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) User navigates to location targeting | |
2) User clicks on the browse button in zip code targeting | |
3) User selects a file and clicks open | |
UI makes API call | |
POST /api/v2.0/strategies/947508/target_postcodes | |
Payload | |
------WebKitFormBoundaryVleV4FL5cW8u0LDn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Current Bulkedit Structure | |
main | |
-> init | |
-> strategies | |
-> strategiesGrid | |
-> tabs | |
-> creatives | |
-> iconGrid | |
-> location |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Save a strategy with a few Peer39 targeting segments | |
targeting_segments (for IAS and Peer39 segments) save | |
POST /api/v2.0/strategies/1119723/targeting_segments | |
form-body | |
segments.1.id:146 | |
segments.1.restriction:INCLUDE | |
segments.1.operator:OR | |
segments.2.id:152 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fsd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'dart:async'; | |
import 'dart:typed_data'; | |
import 'package:http/http.dart' as http; | |
import 'package:multi_image_picker/multi_image_picker.dart'; | |
import 'dart:convert'; | |
void main() => runApp(new MyApp()); | |
class MyApp extends StatefulWidget { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# THis is the problem I'm trying to solve. | |
def my_func(): | |
print('hello 123') |